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
5693eb07
Kaydet (Commit)
5693eb07
authored
Nis 20, 2015
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix more mbNoEndCap MSO 2007 vs OOXML places
Change-Id: Ib1002488e880fa1478dceb046cd08b40cdfe7b1e
üst
935f3b99
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
seriesmodel.hxx
oox/inc/drawingml/chart/seriesmodel.hxx
+1
-1
seriescontext.cxx
oox/source/drawingml/chart/seriescontext.cxx
+5
-5
seriesmodel.cxx
oox/source/drawingml/chart/seriesmodel.cxx
+2
-2
No files found.
oox/inc/drawingml/chart/seriesmodel.hxx
Dosyayı görüntüle @
5693eb07
...
...
@@ -106,7 +106,7 @@ struct ErrorBarModel
sal_Int32
mnValueType
;
/// Type of the values.
bool
mbNoEndCap
;
/// True = no end cap at error bar lines.
explicit
ErrorBarModel
();
explicit
ErrorBarModel
(
bool
bMSO2007Doc
);
~
ErrorBarModel
();
};
...
...
oox/source/drawingml/chart/seriescontext.cxx
Dosyayı görüntüle @
5693eb07
...
...
@@ -423,7 +423,7 @@ ContextHandlerRef AreaSeriesContext::onCreateContext( sal_Int32 nElement, const
case
C_TOKEN
(
cat
):
return
new
DataSourceContext
(
*
this
,
mrModel
.
maSources
.
create
(
SeriesModel
::
CATEGORIES
)
);
case
C_TOKEN
(
errBars
):
return
new
ErrorBarContext
(
*
this
,
mrModel
.
maErrorBars
.
create
()
);
return
new
ErrorBarContext
(
*
this
,
mrModel
.
maErrorBars
.
create
(
bMSO2007Doc
)
);
case
C_TOKEN
(
dLbls
):
return
new
DataLabelsContext
(
*
this
,
mrModel
.
mxLabels
.
create
()
);
case
C_TOKEN
(
dPt
):
...
...
@@ -462,7 +462,7 @@ ContextHandlerRef BarSeriesContext::onCreateContext( sal_Int32 nElement, const A
case
C_TOKEN
(
dPt
):
return
new
DataPointContext
(
*
this
,
mrModel
.
maPoints
.
create
()
);
case
C_TOKEN
(
errBars
):
return
new
ErrorBarContext
(
*
this
,
mrModel
.
maErrorBars
.
create
()
);
return
new
ErrorBarContext
(
*
this
,
mrModel
.
maErrorBars
.
create
(
bMSO2007Doc
)
);
case
C_TOKEN
(
invertIfNegative
):
mrModel
.
mbInvertNeg
=
rAttribs
.
getBool
(
XML_val
,
!
bMSO2007Doc
);
return
0
;
...
...
@@ -509,7 +509,7 @@ ContextHandlerRef BubbleSeriesContext::onCreateContext( sal_Int32 nElement, cons
case
C_TOKEN
(
dPt
):
return
new
DataPointContext
(
*
this
,
mrModel
.
maPoints
.
create
()
);
case
C_TOKEN
(
errBars
):
return
new
ErrorBarContext
(
*
this
,
mrModel
.
maErrorBars
.
create
()
);
return
new
ErrorBarContext
(
*
this
,
mrModel
.
maErrorBars
.
create
(
bMSO2007Doc
)
);
case
C_TOKEN
(
invertIfNegative
):
mrModel
.
mbInvertNeg
=
rAttribs
.
getBool
(
XML_val
,
!
bMSO2007Doc
);
return
0
;
...
...
@@ -549,7 +549,7 @@ ContextHandlerRef LineSeriesContext::onCreateContext( sal_Int32 nElement, const
case
C_TOKEN
(
dPt
):
return
new
DataPointContext
(
*
this
,
mrModel
.
maPoints
.
create
()
);
case
C_TOKEN
(
errBars
):
return
new
ErrorBarContext
(
*
this
,
mrModel
.
maErrorBars
.
create
()
);
return
new
ErrorBarContext
(
*
this
,
mrModel
.
maErrorBars
.
create
(
bMSO2007Doc
)
);
case
C_TOKEN
(
marker
):
return
this
;
case
C_TOKEN
(
smooth
):
...
...
@@ -656,7 +656,7 @@ ContextHandlerRef ScatterSeriesContext::onCreateContext( sal_Int32 nElement, con
case
C_TOKEN
(
dPt
):
return
new
DataPointContext
(
*
this
,
mrModel
.
maPoints
.
create
()
);
case
C_TOKEN
(
errBars
):
return
new
ErrorBarContext
(
*
this
,
mrModel
.
maErrorBars
.
create
()
);
return
new
ErrorBarContext
(
*
this
,
mrModel
.
maErrorBars
.
create
(
bMSO2007Doc
)
);
case
C_TOKEN
(
marker
):
return
this
;
case
C_TOKEN
(
smooth
):
...
...
oox/source/drawingml/chart/seriesmodel.cxx
Dosyayı görüntüle @
5693eb07
...
...
@@ -64,12 +64,12 @@ PictureOptionsModel::~PictureOptionsModel()
{
}
ErrorBarModel
::
ErrorBarModel
()
:
ErrorBarModel
::
ErrorBarModel
(
bool
bMSO2007Doc
)
:
mfValue
(
0.0
),
mnDirection
(
XML_y
),
mnTypeId
(
XML_both
),
mnValueType
(
XML_fixedVal
),
mbNoEndCap
(
false
)
mbNoEndCap
(
!
bMSO2007Doc
)
{
}
...
...
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