Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
5122196a
Kaydet (Commit)
5122196a
authored
Mar 03, 2012
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Avoid temporary rtl::OUString
üst
39c2a52d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
hwpreader.hxx
hwpfilter/source/hwpreader.hxx
+1
-1
shape.cxx
oox/source/drawingml/shape.cxx
+2
-2
facreg.cxx
sax/source/fastparser/facreg.cxx
+2
-2
saxbuilder.cxx
unoxml/source/dom/saxbuilder.cxx
+1
-1
No files found.
hwpfilter/source/hwpreader.hxx
Dosyayı görüntüle @
5122196a
...
...
@@ -351,7 +351,7 @@ extern "C"
OUString
aImplementationName
=
OUString
::
createFromAscii
(
pImplName
);
if
(
aImplementationName
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
IMPLEMENTATION_NAME
))
)
if
(
aImplementationName
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
IMPLEMENTATION_NAME
))
)
{
xRet
=
createSingleFactory
(
xSMgr
,
aImplementationName
,
HwpImportFilter_CreateInstance
,
...
...
oox/source/drawingml/shape.cxx
Dosyayı görüntüle @
5122196a
...
...
@@ -383,7 +383,7 @@ Reference< XShape > Shape::createAndInsert(
aTransformation
.
scale
(
1
/
360.0
,
1
/
360.0
);
// special for lineshape
if
(
aServiceName
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"com.sun.star.drawing.LineShape"
))
)
if
(
aServiceName
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"com.sun.star.drawing.LineShape"
))
)
{
::
basegfx
::
B2DPolygon
aPoly
;
aPoly
.
insert
(
0
,
::
basegfx
::
B2DPoint
(
0
,
0
)
);
...
...
@@ -404,7 +404,7 @@ Reference< XShape > Shape::createAndInsert(
maShapeProperties
[
PROP_PolyPolygon
]
<<=
aPolyPolySequence
;
}
else
if
(
aServiceName
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"com.sun.star.drawing.ConnectorShape"
))
)
else
if
(
aServiceName
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"com.sun.star.drawing.ConnectorShape"
))
)
{
::
basegfx
::
B2DPolygon
aPoly
;
aPoly
.
insert
(
0
,
::
basegfx
::
B2DPoint
(
0
,
0
)
);
...
...
sax/source/fastparser/facreg.cxx
Dosyayı görüntüle @
5122196a
...
...
@@ -52,13 +52,13 @@ SAL_DLLPUBLIC_EXPORT void * SAL_CALL fastsax_component_getFactory(
OUString
aImplementationName
(
OUString
::
createFromAscii
(
pImplName
)
);
if
(
aImplementationName
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
PARSER_IMPLEMENTATION_NAME
)
)
)
if
(
aImplementationName
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
PARSER_IMPLEMENTATION_NAME
)
)
)
{
xRet
=
createSingleFactory
(
xSMgr
,
aImplementationName
,
FastSaxParser_CreateInstance
,
FastSaxParser
::
getSupportedServiceNames_Static
()
);
}
else
if
(
aImplementationName
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
SERIALIZER_IMPLEMENTATION_NAME
)
)
)
else
if
(
aImplementationName
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
SERIALIZER_IMPLEMENTATION_NAME
)
)
)
{
xRet
=
createSingleFactory
(
xSMgr
,
aImplementationName
,
FastSaxSerializer_CreateInstance
,
...
...
unoxml/source/dom/saxbuilder.cxx
Dosyayı görüntüle @
5122196a
...
...
@@ -231,7 +231,7 @@ namespace DOM
newprefix
=
attr_qname
.
copy
(
attr_qname
.
indexOf
(
':'
)
+
1
);
aNSMap
.
insert
(
NSMap
::
value_type
(
newprefix
,
attr_value
));
}
else
if
(
attr_qname
==
OUString
(
RTL_CONSTASCII_U
STRINGPARAM
(
"xmlns"
)))
else
if
(
attr_qname
.
equalsAsciiL
(
RTL_CONSTASCII_
STRINGPARAM
(
"xmlns"
)))
{
// new default prefix
aNSMap
.
insert
(
NSMap
::
value_type
(
OUString
(),
attr_value
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment