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
d283eadb
Kaydet (Commit)
d283eadb
authored
Nis 12, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WaE: various compiler warnings
üst
a1885cb7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
FormulaCompiler.cxx
formula/source/core/api/FormulaCompiler.cxx
+7
-2
token.cxx
formula/source/core/api/token.cxx
+7
-2
No files found.
formula/source/core/api/FormulaCompiler.cxx
Dosyayı görüntüle @
d283eadb
...
...
@@ -722,6 +722,7 @@ OpCode FormulaCompiler::GetEnglishOpCode( const String& rName ) const
bool
FormulaCompiler
::
IsOpCodeVolatile
(
OpCode
eOp
)
{
bool
bRet
=
false
;
switch
(
eOp
)
{
// no parameters:
...
...
@@ -739,9 +740,13 @@ bool FormulaCompiler::IsOpCodeVolatile( OpCode eOp )
case
ocIndirectXL
:
// ocOffset results in indirect references.
case
ocOffset
:
return
true
;
bRet
=
true
;
break
;
default
:
bRet
=
false
;
break
;
}
return
false
;
return
bRet
;
}
// Remove quotes, escaped quotes are unescaped.
...
...
formula/source/core/api/token.cxx
Dosyayı görüntüle @
d283eadb
...
...
@@ -135,14 +135,19 @@ bool FormulaToken::IsMatrixFunction() const
bool
FormulaToken
::
IsExternalRef
()
const
{
bool
bRet
=
false
;
switch
(
eType
)
{
case
svExternalSingleRef
:
case
svExternalDoubleRef
:
case
svExternalName
:
return
true
;
bRet
=
true
;
break
;
default
:
bRet
=
false
;
break
;
}
return
false
;
return
bRet
;
}
bool
FormulaToken
::
operator
==
(
const
FormulaToken
&
rToken
)
const
...
...
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