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
fdb42c39
Kaydet (Commit)
fdb42c39
authored
Eki 03, 2012
tarafından
Noel Power
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix for fdo#55565 regression, failure to export vertical text in shape
Change-Id: If3d6413b1fb9e02dc26f930634f84712d7d08ca3
üst
4b5837d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
drawingml.cxx
oox/source/export/drawingml.cxx
+21
-0
No files found.
oox/source/export/drawingml.cxx
Dosyayı görüntüle @
fdb42c39
...
@@ -1241,6 +1241,27 @@ void DrawingML::WriteText( Reference< XInterface > rXIface )
...
@@ -1241,6 +1241,27 @@ void DrawingML::WriteText( Reference< XInterface > rXIface )
}
}
}
}
if
(
GETA
(
CustomShapeGeometry
)
)
{
Sequence
<
PropertyValue
>
aProps
;
if
(
mAny
>>=
aProps
)
{
for
(
sal_Int32
i
=
0
,
nElems
=
aProps
.
getLength
();
i
<
nElems
;
++
i
)
{
sal_Int32
nTextRotateAngle
=
0
;
if
(
aProps
[
i
].
Name
.
equals
(
"TextPreRotateAngle"
)
&&
(
aProps
[
i
].
Value
>>=
nTextRotateAngle
)
)
{
if
(
nTextRotateAngle
==
-
90
)
{
sWritingMode
=
"vert"
;
bVertical
=
sal_True
;
}
break
;
}
}
}
}
TextHorizontalAdjust
eHorizontalAlignment
(
TextHorizontalAdjust_CENTER
);
TextHorizontalAdjust
eHorizontalAlignment
(
TextHorizontalAdjust_CENTER
);
bool
bHorizontalCenter
=
false
;
bool
bHorizontalCenter
=
false
;
GET
(
eHorizontalAlignment
,
TextHorizontalAdjust
);
GET
(
eHorizontalAlignment
,
TextHorizontalAdjust
);
...
...
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