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
042686d3
Kaydet (Commit)
042686d3
authored
Tem 19, 2012
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Work around bogus Mac GCC uninitialized warnings
Change-Id: I04f64b11b484be8c997e1dbab8de35282fa64289
üst
8cd92447
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
EnhancedShapeDumper.cxx
drawinglayer/source/dumper/EnhancedShapeDumper.cxx
+3
-3
XShapeDumper.cxx
drawinglayer/source/dumper/XShapeDumper.cxx
+7
-7
No files found.
drawinglayer/source/dumper/EnhancedShapeDumper.cxx
Dosyayı görüntüle @
042686d3
...
...
@@ -395,19 +395,19 @@ void EnhancedShapeDumper::dumpEnhancedCustomShapeGeometryService(uno::Reference<
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"MirroredX"
);
sal_Bool
bMirroredX
;
sal_Bool
bMirroredX
=
sal_Bool
()
;
if
(
anotherAny
>>=
bMirroredX
)
dumpMirroredXAsAttribute
(
bMirroredX
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"MirroredY"
);
sal_Bool
bMirroredY
;
sal_Bool
bMirroredY
=
sal_Bool
()
;
if
(
anotherAny
>>=
bMirroredY
)
dumpMirroredYAsAttribute
(
bMirroredY
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"TextRotateAngle"
);
double
aTextRotateAngle
;
double
aTextRotateAngle
=
double
()
;
if
(
anotherAny
>>=
aTextRotateAngle
)
dumpTextRotateAngleAsAttribute
(
aTextRotateAngle
);
}
...
...
drawinglayer/source/dumper/XShapeDumper.cxx
Dosyayı görüntüle @
042686d3
...
...
@@ -1587,13 +1587,13 @@ void dumpShapeService(uno::Reference< beans::XPropertySet > xPropSet, xmlTextWri
uno
::
Reference
<
beans
::
XPropertySetInfo
>
xInfo
=
xPropSet
->
getPropertySetInfo
();
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"ZOrder"
);
sal_Int32
aZOrder
;
sal_Int32
aZOrder
=
sal_Int32
()
;
if
(
anotherAny
>>=
aZOrder
)
dumpZOrderAsAttribute
(
aZOrder
,
xmlWriter
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"LayerID"
);
sal_Int32
aLayerID
;
sal_Int32
aLayerID
=
sal_Int32
()
;
if
(
anotherAny
>>=
aLayerID
)
dumpLayerIDAsAttribute
(
aLayerID
,
xmlWriter
);
}
...
...
@@ -1605,19 +1605,19 @@ void dumpShapeService(uno::Reference< beans::XPropertySet > xPropSet, xmlTextWri
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"Visible"
);
sal_Bool
bVisible
;
sal_Bool
bVisible
=
sal_Bool
()
;
if
(
anotherAny
>>=
bVisible
)
dumpVisibleAsAttribute
(
bVisible
,
xmlWriter
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"Printable"
);
sal_Bool
bPrintable
;
sal_Bool
bPrintable
=
sal_Bool
()
;
if
(
anotherAny
>>=
bPrintable
)
dumpPrintableAsAttribute
(
bPrintable
,
xmlWriter
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"MoveProtect"
);
sal_Bool
bMoveProtect
;
sal_Bool
bMoveProtect
=
sal_Bool
()
;
if
(
anotherAny
>>=
bMoveProtect
)
dumpMoveProtectAsAttribute
(
bMoveProtect
,
xmlWriter
);
}
...
...
@@ -1629,7 +1629,7 @@ void dumpShapeService(uno::Reference< beans::XPropertySet > xPropSet, xmlTextWri
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"SizeProtect"
);
sal_Bool
bSizeProtect
;
sal_Bool
bSizeProtect
=
sal_Bool
()
;
if
(
anotherAny
>>=
bSizeProtect
)
dumpSizeProtectAsAttribute
(
bSizeProtect
,
xmlWriter
);
}
...
...
@@ -1641,7 +1641,7 @@ void dumpShapeService(uno::Reference< beans::XPropertySet > xPropSet, xmlTextWri
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"NavigationOrder"
);
sal_Int32
aNavigationOrder
;
sal_Int32
aNavigationOrder
=
sal_Int32
()
;
if
(
anotherAny
>>=
aNavigationOrder
)
dumpNavigationOrderAsAttribute
(
aNavigationOrder
,
xmlWriter
);
}
...
...
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