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
76bf4dae
Kaydet (Commit)
76bf4dae
authored
Nis 11, 2013
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
RTF shape import: fix default horizontal/vertical orient relation
Change-Id: Icf324d2762f292c7f5f2ec9502f58c4961b28512
üst
50b57163
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
rtfsdrimport.cxx
writerfilter/source/rtftok/rtfsdrimport.cxx
+7
-0
No files found.
writerfilter/source/rtftok/rtfsdrimport.cxx
Dosyayı görüntüle @
76bf4dae
...
...
@@ -34,6 +34,7 @@
#include <com/sun/star/drawing/EnhancedCustomShapeParameterPair.hpp>
#include <com/sun/star/drawing/EnhancedCustomShapeSegmentCommand.hpp>
#include <com/sun/star/text/HoriOrientation.hpp>
#include <com/sun/star/text/RelOrientation.hpp>
#include <com/sun/star/text/SizeType.hpp>
#include <com/sun/star/text/VertOrientation.hpp>
#include <com/sun/star/text/WrapTextMode.hpp>
...
...
@@ -83,9 +84,15 @@ std::vector<beans::PropertyValue> RTFSdrImport::getTextFrameDefaults(bool bNew)
aPropertyValue
.
Name
=
"HoriOrient"
;
aPropertyValue
.
Value
<<=
text
::
HoriOrientation
::
NONE
;
aRet
.
push_back
(
aPropertyValue
);
aPropertyValue
.
Name
=
"HoriOrientRelation"
;
aPropertyValue
.
Value
<<=
text
::
RelOrientation
::
FRAME
;
aRet
.
push_back
(
aPropertyValue
);
aPropertyValue
.
Name
=
"VertOrient"
;
aPropertyValue
.
Value
<<=
text
::
VertOrientation
::
NONE
;
aRet
.
push_back
(
aPropertyValue
);
aPropertyValue
.
Name
=
"VertOrientRelation"
;
aPropertyValue
.
Value
<<=
text
::
RelOrientation
::
FRAME
;
aRet
.
push_back
(
aPropertyValue
);
if
(
!
bNew
)
{
aPropertyValue
.
Name
=
"BackColorTransparency"
;
...
...
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