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
135907f2
Kaydet (Commit)
135907f2
authored
Nis 15, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix crash on export of fdo60365-2.ods to xlsx
Change-Id: I1a281b096e4d1831bcf67ca03180afff043fbcfd
üst
bf2fca48
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
chartexport.cxx
oox/source/export/chartexport.cxx
+2
-2
No files found.
oox/source/export/chartexport.cxx
Dosyayı görüntüle @
135907f2
...
...
@@ -1980,7 +1980,7 @@ void ChartExport::exportSeriesCategory( const Reference< chart2::data::XDataSequ
pFS
->
startElement
(
FSNS
(
XML_c
,
XML_cat
),
FSEND
);
OUString
aCellRange
=
xValueSeq
->
getSourceRangeRepresentation
();
OUString
aCellRange
=
xValueSeq
.
is
()
?
xValueSeq
->
getSourceRangeRepresentation
()
:
OUString
();
aCellRange
=
parseFormula
(
aCellRange
);
// TODO: need to handle XML_multiLvlStrRef according to aCellRange
pFS
->
startElement
(
FSNS
(
XML_c
,
XML_strRef
),
...
...
@@ -2023,7 +2023,7 @@ void ChartExport::exportSeriesValues( const Reference< chart2::data::XDataSequen
pFS
->
startElement
(
FSNS
(
XML_c
,
nValueType
),
FSEND
);
OUString
aCellRange
=
xValueSeq
->
getSourceRangeRepresentation
();
OUString
aCellRange
=
xValueSeq
.
is
()
?
xValueSeq
->
getSourceRangeRepresentation
()
:
OUString
();
aCellRange
=
parseFormula
(
aCellRange
);
// TODO: need to handle XML_multiLvlStrRef according to aCellRange
pFS
->
startElement
(
FSNS
(
XML_c
,
XML_numRef
),
...
...
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