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
229f6e18
Kaydet (Commit)
229f6e18
authored
Haz 01, 2012
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Related: fdo#46361 fix VML import of v:rect's fillcolor
Change-Id: I530e07bb89f231b10c9e6da2eb4e6b698ee9654a
üst
b9ecec7c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
properties.txt
oox/source/token/properties.txt
+1
-0
vmlshape.cxx
oox/source/vml/vmlshape.cxx
+9
-0
No files found.
oox/source/token/properties.txt
Dosyayı görüntüle @
229f6e18
...
@@ -19,6 +19,7 @@ AttachedAxisIndex
...
@@ -19,6 +19,7 @@ AttachedAxisIndex
AutoFilter
AutoFilter
AutoShowInfo
AutoShowInfo
Autocomplete
Autocomplete
BackColor
BackGraphicLocation
BackGraphicLocation
BackGraphicURL
BackGraphicURL
Background
Background
...
...
oox/source/vml/vmlshape.cxx
Dosyayı görüntüle @
229f6e18
...
@@ -354,6 +354,15 @@ void ShapeBase::convertShapeProperties( const Reference< XShape >& rxShape ) con
...
@@ -354,6 +354,15 @@ void ShapeBase::convertShapeProperties( const Reference< XShape >& rxShape ) con
const
GraphicHelper
&
rGraphicHelper
=
mrDrawing
.
getFilter
().
getGraphicHelper
();
const
GraphicHelper
&
rGraphicHelper
=
mrDrawing
.
getFilter
().
getGraphicHelper
();
maTypeModel
.
maStrokeModel
.
pushToPropMap
(
aPropMap
,
rGraphicHelper
);
maTypeModel
.
maStrokeModel
.
pushToPropMap
(
aPropMap
,
rGraphicHelper
);
maTypeModel
.
maFillModel
.
pushToPropMap
(
aPropMap
,
rGraphicHelper
);
maTypeModel
.
maFillModel
.
pushToPropMap
(
aPropMap
,
rGraphicHelper
);
// TextFrames have FillColor, not BackColor
uno
::
Reference
<
lang
::
XServiceInfo
>
xSInfo
(
rxShape
,
uno
::
UNO_QUERY_THROW
);
if
(
xSInfo
->
supportsService
(
"com.sun.star.text.TextFrame"
)
&&
aPropMap
.
hasProperty
(
PROP_FillColor
))
{
aPropMap
.
setProperty
(
PROP_BackColor
,
aPropMap
[
PROP_FillColor
]);
aPropMap
.
erase
(
PROP_FillColor
);
}
PropertySet
(
rxShape
).
setProperties
(
aPropMap
);
PropertySet
(
rxShape
).
setProperties
(
aPropMap
);
}
}
...
...
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