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
909b58fc
Kaydet (Commit)
909b58fc
authored
Ock 11, 2012
tarafından
Radek Doulik
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
pptx: support fill=[darken|darkenLess|lighten|lightenLess] in path element
üst
158e9271
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
customshapegeometry.cxx
oox/source/drawingml/customshapegeometry.cxx
+18
-2
No files found.
oox/source/drawingml/customshapegeometry.cxx
Dosyayı görüntüle @
909b58fc
...
@@ -1009,9 +1009,25 @@ Path2DContext::Path2DContext( ContextHandler& rParent, const Reference< XFastAtt
...
@@ -1009,9 +1009,25 @@ Path2DContext::Path2DContext( ContextHandler& rParent, const Reference< XFastAtt
Path2DContext
::~
Path2DContext
()
Path2DContext
::~
Path2DContext
()
{
{
EnhancedCustomShapeSegment
aNewSegment
;
EnhancedCustomShapeSegment
aNewSegment
;
if
(
mrPath2D
.
fill
==
XML_none
)
switch
(
mrPath2D
.
fill
)
{
{
aNewSegment
.
Command
=
EnhancedCustomShapeSegmentCommand
::
NOFILL
;
case
XML_none
:
aNewSegment
.
Command
=
EnhancedCustomShapeSegmentCommand
::
NOFILL
;
break
;
case
XML_darken
:
aNewSegment
.
Command
=
EnhancedCustomShapeSegmentCommand
::
DARKEN
;
break
;
case
XML_darkenLess
:
aNewSegment
.
Command
=
EnhancedCustomShapeSegmentCommand
::
DARKENLESS
;
break
;
case
XML_lighten
:
aNewSegment
.
Command
=
EnhancedCustomShapeSegmentCommand
::
LIGHTEN
;
break
;
case
XML_lightenLess
:
aNewSegment
.
Command
=
EnhancedCustomShapeSegmentCommand
::
LIGHTENLESS
;
break
;
}
if
(
mrPath2D
.
fill
!=
XML_norm
)
{
aNewSegment
.
Count
=
0
;
aNewSegment
.
Count
=
0
;
mrSegments
.
push_back
(
aNewSegment
);
mrSegments
.
push_back
(
aNewSegment
);
}
}
...
...
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