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
5a5b35c9
Kaydet (Commit)
5a5b35c9
authored
Ara 02, 2013
tarafından
Eike Rathke
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
added isOOXML()
Change-Id: I9e088e1d6679297884d71604b03537b73ee3387c
üst
2dcee42f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
FormulaCompiler.hxx
include/formula/FormulaCompiler.hxx
+3
-0
grammar.hxx
include/formula/grammar.hxx
+7
-0
No files found.
include/formula/FormulaCompiler.hxx
Dosyayı görüntüle @
5a5b35c9
...
...
@@ -156,6 +156,9 @@ public:
/// Is it an ODFF / ODF 1.2 mapping?
inline
bool
isODFF
()
const
{
return
FormulaGrammar
::
isODFF
(
meGrammar
);
}
/// Is it an OOXML mapping?
inline
bool
isOOXML
()
const
{
return
FormulaGrammar
::
isOOXML
(
meGrammar
);
}
/// Does it have external symbol/name mappings?
inline
bool
hasExternals
()
const
{
return
!
mpExternalHashMap
->
empty
();
}
...
...
include/formula/grammar.hxx
Dosyayı görüntüle @
5a5b35c9
...
...
@@ -244,6 +244,13 @@ public:
::
com
::
sun
::
star
::
sheet
::
FormulaLanguage
::
ODFF
;
}
/// If grammar is of OOXML
static
inline
bool
isOOXML
(
const
Grammar
eGrammar
)
{
return
extractFormulaLanguage
(
eGrammar
)
==
::
com
::
sun
::
star
::
sheet
::
FormulaLanguage
::
OOXML
;
}
};
// =============================================================================
}
// formula
...
...
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