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
7a8ef88e
Kaydet (Commit)
7a8ef88e
authored
Nis 28, 2015
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix grouping MSO 2007 vs OOXML default value
Change-Id: Idee9ce707d852efb56657eff7d565893f99e4da3
üst
e3180554
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
typegroupcontext.cxx
oox/source/drawingml/chart/typegroupcontext.cxx
+3
-4
typegroupmodel.cxx
oox/source/drawingml/chart/typegroupmodel.cxx
+1
-1
No files found.
oox/source/drawingml/chart/typegroupcontext.cxx
Dosyayı görüntüle @
7a8ef88e
...
...
@@ -83,7 +83,7 @@ ContextHandlerRef AreaTypeGroupContext::onCreateContext( sal_Int32 nElement, con
mrModel
.
mnGapDepth
=
rAttribs
.
getInteger
(
XML_val
,
150
);
return
0
;
case
C_TOKEN
(
grouping
):
mrModel
.
mnGrouping
=
rAttribs
.
getToken
(
XML_val
,
XML_standar
d
);
mrModel
.
mnGrouping
=
rAttribs
.
getToken
(
XML_val
,
bMSO2007Doc
?
XML_standard
:
XML_clustere
d
);
return
0
;
case
C_TOKEN
(
ser
):
return
new
AreaSeriesContext
(
*
this
,
mrModel
.
maSeries
.
create
(
bMSO2007Doc
)
);
...
...
@@ -123,8 +123,7 @@ ContextHandlerRef BarTypeGroupContext::onCreateContext( sal_Int32 nElement, cons
mrModel
.
mnGapWidth
=
rAttribs
.
getInteger
(
XML_val
,
150
);
return
0
;
case
C_TOKEN
(
grouping
):
// default is 'standard', not 'clustered' as specified
mrModel
.
mnGrouping
=
rAttribs
.
getToken
(
XML_val
,
XML_standard
);
mrModel
.
mnGrouping
=
rAttribs
.
getToken
(
XML_val
,
bMSO2007Doc
?
XML_standard
:
XML_clustered
);
return
0
;
case
C_TOKEN
(
overlap
):
mrModel
.
mnOverlap
=
rAttribs
.
getInteger
(
XML_val
,
0
);
...
...
@@ -208,7 +207,7 @@ ContextHandlerRef LineTypeGroupContext::onCreateContext( sal_Int32 nElement, con
mrModel
.
mnGapDepth
=
rAttribs
.
getInteger
(
XML_val
,
150
);
return
0
;
case
C_TOKEN
(
grouping
):
mrModel
.
mnGrouping
=
rAttribs
.
getToken
(
XML_val
,
XML_standar
d
);
mrModel
.
mnGrouping
=
rAttribs
.
getToken
(
XML_val
,
bMSO2007Doc
?
XML_standard
:
XML_clustere
d
);
return
0
;
case
C_TOKEN
(
hiLowLines
):
return
new
ShapePrWrapperContext
(
*
this
,
mrModel
.
mxHiLowLines
.
create
()
);
...
...
oox/source/drawingml/chart/typegroupmodel.cxx
Dosyayı görüntüle @
7a8ef88e
...
...
@@ -40,7 +40,7 @@ TypeGroupModel::TypeGroupModel( sal_Int32 nTypeId, bool bMSO2007Doc ) :
mnFirstAngle
(
0
),
mnGapDepth
(
150
),
mnGapWidth
(
150
),
mnGrouping
(
XML_standar
d
),
mnGrouping
(
bMSO2007Doc
?
XML_standard
:
XML_clustere
d
),
mnHoleSize
(
10
),
mnOfPieType
(
XML_pie
),
mnOverlap
(
0
),
...
...
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