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
7d603d97
Kaydet (Commit)
7d603d97
authored
Eki 19, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:defaultparams
Change-Id: Id2c0a8dbfe7110f816360ca9eb2bbca8e2f55a30
üst
788638af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
shapes.cxx
oox/source/export/shapes.cxx
+6
-6
No files found.
oox/source/export/shapes.cxx
Dosyayı görüntüle @
7d603d97
...
...
@@ -576,7 +576,7 @@ ShapeExport& ShapeExport::WriteEllipseShape( Reference< XShape > xShape )
// visual shape properties
pFS
->
startElementNS
(
mnXmlNamespace
,
XML_spPr
,
FSEND
);
WriteShapeTransformation
(
xShape
,
XML_a
,
false
,
false
);
WriteShapeTransformation
(
xShape
,
XML_a
);
WritePresetShape
(
"ellipse"
);
Reference
<
XPropertySet
>
xProps
(
xShape
,
UNO_QUERY
);
if
(
xProps
.
is
()
)
...
...
@@ -684,7 +684,7 @@ void ShapeExport::WriteGraphicObjectShapePart( Reference< XShape > xShape, const
// visual shape properties
pFS
->
startElementNS
(
mnXmlNamespace
,
XML_spPr
,
FSEND
);
WriteShapeTransformation
(
xShape
,
XML_a
,
false
,
false
);
WriteShapeTransformation
(
xShape
,
XML_a
);
WritePresetShape
(
"rect"
);
// graphic object can come with the frame (bnc#654525)
WriteOutline
(
xShapeProps
);
...
...
@@ -899,7 +899,7 @@ ShapeExport& ShapeExport::WriteRectangleShape( Reference< XShape > xShape )
// visual shape properties
pFS
->
startElementNS
(
mnXmlNamespace
,
XML_spPr
,
FSEND
);
WriteShapeTransformation
(
xShape
,
XML_a
,
false
,
false
);
WriteShapeTransformation
(
xShape
,
XML_a
);
WritePresetShape
(
nRadius
==
0
?
"rect"
:
"roundRect"
);
Reference
<
XPropertySet
>
xProps
(
xShape
,
UNO_QUERY
);
if
(
xProps
.
is
()
)
...
...
@@ -998,7 +998,7 @@ ShapeExport& ShapeExport::WriteTextBox( Reference< XInterface > xIface, sal_Int3
FSHelperPtr
pFS
=
GetFS
();
pFS
->
startElementNS
(
nXmlNamespace
,
(
GetDocumentType
()
!=
DOCUMENT_DOCX
?
XML_txBody
:
XML_txbx
),
FSEND
);
WriteText
(
xIface
,
m_presetWarp
,
/*bBodyPr=*/
(
GetDocumentType
()
!=
DOCUMENT_DOCX
)
,
/*bText=*/
true
);
WriteText
(
xIface
,
m_presetWarp
,
/*bBodyPr=*/
(
GetDocumentType
()
!=
DOCUMENT_DOCX
)
);
pFS
->
endElementNS
(
nXmlNamespace
,
(
GetDocumentType
()
!=
DOCUMENT_DOCX
?
XML_txBody
:
XML_txbx
)
);
if
(
GetDocumentType
()
==
DOCUMENT_DOCX
)
WriteText
(
xIface
,
m_presetWarp
,
/*bBodyPr=*/
true
,
/*bText=*/
false
,
/*nXmlNamespace=*/
nXmlNamespace
);
...
...
@@ -1311,7 +1311,7 @@ ShapeExport& ShapeExport::WriteTableShape( Reference< XShape > xShape )
FSEND
);
pFS
->
endElementNS
(
mnXmlNamespace
,
XML_nvGraphicFramePr
);
WriteShapeTransformation
(
xShape
,
mnXmlNamespace
,
false
);
WriteShapeTransformation
(
xShape
,
mnXmlNamespace
);
WriteTable
(
xShape
);
pFS
->
endElementNS
(
mnXmlNamespace
,
XML_graphicFrame
);
...
...
@@ -1340,7 +1340,7 @@ ShapeExport& ShapeExport::WriteTextShape( Reference< XShape > xShape )
// visual shape properties
pFS
->
startElementNS
(
mnXmlNamespace
,
XML_spPr
,
FSEND
);
WriteShapeTransformation
(
xShape
,
XML_a
,
false
,
false
);
WriteShapeTransformation
(
xShape
,
XML_a
);
WritePresetShape
(
"rect"
);
uno
::
Reference
<
beans
::
XPropertySet
>
xPropertySet
(
xShape
,
UNO_QUERY
);
WriteBlipOrNormalFill
(
xPropertySet
,
"GraphicURL"
);
...
...
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