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
67f37b1d
Kaydet (Commit)
67f37b1d
authored
Şub 24, 2012
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#40320: Correctly import data point formats in data series.
üst
3dee9ff1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
xichart.cxx
sc/source/filter/excel/xichart.cxx
+3
-2
No files found.
sc/source/filter/excel/xichart.cxx
Dosyayı görüntüle @
67f37b1d
...
@@ -2118,8 +2118,9 @@ XclImpChDataFormatRef* XclImpChSeries::GetDataFormatRef( sal_uInt16 nPointIdx )
...
@@ -2118,8 +2118,9 @@ XclImpChDataFormatRef* XclImpChSeries::GetDataFormatRef( sal_uInt16 nPointIdx )
XclImpChDataFormatMap
::
iterator
itr
=
maPointFmts
.
lower_bound
(
nPointIdx
);
XclImpChDataFormatMap
::
iterator
itr
=
maPointFmts
.
lower_bound
(
nPointIdx
);
if
(
itr
==
maPointFmts
.
end
()
||
maPointFmts
.
key_comp
()(
nPointIdx
,
itr
->
first
))
if
(
itr
==
maPointFmts
.
end
()
||
maPointFmts
.
key_comp
()(
nPointIdx
,
itr
->
first
))
{
{
// No object exists at this point index position. Insert a new one.
// No object exists at this point index position. Insert a new
XclImpChDataFormatRef
p
(
new
XclImpChDataFormat
(
GetChRoot
()));
// placeholder.
XclImpChDataFormatRef
p
;
itr
=
maPointFmts
.
insert
(
itr
,
XclImpChDataFormatMap
::
value_type
(
nPointIdx
,
p
));
itr
=
maPointFmts
.
insert
(
itr
,
XclImpChDataFormatMap
::
value_type
(
nPointIdx
,
p
));
}
}
return
&
itr
->
second
;
return
&
itr
->
second
;
...
...
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