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
5a3eb922
Kaydet (Commit)
5a3eb922
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: Ia735ee75b75b3e2dafe610cf5cd513dd7d4b7392
üst
d8720d4e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
14 deletions
+14
-14
EnhancedShapeDumper.cxx
drawinglayer/source/dumper/EnhancedShapeDumper.cxx
+7
-7
XShapeDumper.cxx
drawinglayer/source/dumper/XShapeDumper.cxx
+7
-7
No files found.
drawinglayer/source/dumper/EnhancedShapeDumper.cxx
Dosyayı görüntüle @
5a3eb922
...
...
@@ -624,19 +624,19 @@ void EnhancedShapeDumper::dumpEnhancedCustomShapeHandleService(uno::Reference< b
{
{
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
(
"Switched"
);
sal_Bool
bSwitched
;
sal_Bool
bSwitched
=
sal_Bool
()
;
if
(
anotherAny
>>=
bSwitched
)
dumpSwitchedAsAttribute
(
bSwitched
);
}
...
...
@@ -654,25 +654,25 @@ void EnhancedShapeDumper::dumpEnhancedCustomShapeHandleService(uno::Reference< b
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"RefX"
);
sal_Int32
aRefX
;
sal_Int32
aRefX
=
sal_Int32
()
;
if
(
anotherAny
>>=
aRefX
)
dumpRefXAsAttribute
(
aRefX
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"RefY"
);
sal_Int32
aRefY
;
sal_Int32
aRefY
=
sal_Int32
()
;
if
(
anotherAny
>>=
aRefY
)
dumpRefYAsAttribute
(
aRefY
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"RefAngle"
);
sal_Int32
aRefAngle
;
sal_Int32
aRefAngle
=
sal_Int32
()
;
if
(
anotherAny
>>=
aRefAngle
)
dumpRefAngleAsAttribute
(
aRefAngle
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"RefR"
);
sal_Int32
aRefR
;
sal_Int32
aRefR
=
sal_Int32
()
;
if
(
anotherAny
>>=
aRefR
)
dumpRefRAsAttribute
(
aRefR
);
}
...
...
drawinglayer/source/dumper/XShapeDumper.cxx
Dosyayı görüntüle @
5a3eb922
...
...
@@ -1454,19 +1454,19 @@ void dumpLinePropertiesService(uno::Reference< beans::XPropertySet > xPropSet, x
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"LineColor"
);
sal_Int32
aLineColor
;
sal_Int32
aLineColor
=
sal_Int32
()
;
if
(
anotherAny
>>=
aLineColor
)
dumpLineColorAsAttribute
(
aLineColor
,
xmlWriter
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"LineTransparence"
);
sal_Int32
aLineTransparence
;
sal_Int32
aLineTransparence
=
sal_Int32
()
;
if
(
anotherAny
>>=
aLineTransparence
)
dumpLineTransparenceAsAttribute
(
aLineTransparence
,
xmlWriter
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"LineWidth"
);
sal_Int32
aLineWidth
;
sal_Int32
aLineWidth
=
sal_Int32
()
;
if
(
anotherAny
>>=
aLineWidth
)
dumpLineWidthAsAttribute
(
aLineWidth
,
xmlWriter
);
}
...
...
@@ -1502,25 +1502,25 @@ void dumpLinePropertiesService(uno::Reference< beans::XPropertySet > xPropSet, x
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"LineStartCenter"
);
sal_Bool
bLineStartCenter
;
sal_Bool
bLineStartCenter
=
sal_Bool
()
;
if
(
anotherAny
>>=
bLineStartCenter
)
dumpLineStartCenterAsAttribute
(
bLineStartCenter
,
xmlWriter
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"LineStartWidth"
);
sal_Int32
aLineStartWidth
;
sal_Int32
aLineStartWidth
=
sal_Int32
()
;
if
(
anotherAny
>>=
aLineStartWidth
)
dumpLineStartWidthAsAttribute
(
aLineStartWidth
,
xmlWriter
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"LineEndCenter"
);
sal_Bool
bLineEndCenter
;
sal_Bool
bLineEndCenter
=
sal_Bool
()
;
if
(
anotherAny
>>=
bLineEndCenter
)
dumpLineEndCenterAsAttribute
(
bLineEndCenter
,
xmlWriter
);
}
{
uno
::
Any
anotherAny
=
xPropSet
->
getPropertyValue
(
"LineEndWidth"
);
sal_Int32
aLineEndWidth
;
sal_Int32
aLineEndWidth
=
sal_Int32
()
;
if
(
anotherAny
>>=
aLineEndWidth
)
dumpLineEndWidthAsAttribute
(
aLineEndWidth
,
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