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
7365db39
Kaydet (Commit)
7365db39
authored
Kas 04, 2012
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
implement text cond format export to odf
Change-Id: I3992fb7150fff1422a04d85ead5f666f2d3f1bfb
üst
63ea94f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
xmlexprt.cxx
sc/source/filter/xml/xmlexprt.cxx
+20
-0
No files found.
sc/source/filter/xml/xmlexprt.cxx
Dosyayı görüntüle @
7365db39
...
@@ -3914,6 +3914,26 @@ void ScXMLExport::ExportConditionalFormat(SCTAB nTab)
...
@@ -3914,6 +3914,26 @@ void ScXMLExport::ExportConditionalFormat(SCTAB nTab)
case
SC_COND_NOERROR
:
case
SC_COND_NOERROR
:
aCond
.
append
(
"is-no-error"
);
aCond
.
append
(
"is-no-error"
);
break
;
break
;
case
SC_COND_BEGINS_WITH
:
aCond
.
append
(
"begins-with("
);
aCond
.
append
(
pEntry
->
GetExpression
(
aPos
,
0
,
0
,
formula
::
FormulaGrammar
::
GRAM_ODFF
));
aCond
.
append
(
")"
);
break
;
case
SC_COND_ENDS_WITH
:
aCond
.
append
(
"ends-with("
);
aCond
.
append
(
pEntry
->
GetExpression
(
aPos
,
0
,
0
,
formula
::
FormulaGrammar
::
GRAM_ODFF
));
aCond
.
append
(
")"
);
break
;
case
SC_COND_CONTAINS_TEXT
:
aCond
.
append
(
"contains-text("
);
aCond
.
append
(
pEntry
->
GetExpression
(
aPos
,
0
,
0
,
formula
::
FormulaGrammar
::
GRAM_ODFF
));
aCond
.
append
(
")"
);
break
;
case
SC_COND_NOT_CONTAINS_TEXT
:
aCond
.
append
(
"not-contains-text("
);
aCond
.
append
(
pEntry
->
GetExpression
(
aPos
,
0
,
0
,
formula
::
FormulaGrammar
::
GRAM_ODFF
));
aCond
.
append
(
")"
);
break
;
case
SC_COND_NONE
:
case
SC_COND_NONE
:
continue
;
continue
;
default
:
default
:
...
...
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