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
d9f303a0
Kaydet (Commit)
d9f303a0
authored
Eki 22, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused FormulaToken::Is3DRef
Change-Id: Ib720bc4b3bfff8e428d14d65ff73144db82c60e0
üst
e3ac30fe
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
30 deletions
+0
-30
token.cxx
formula/source/core/api/token.cxx
+0
-5
token.hxx
include/formula/token.hxx
+0
-1
token.hxx
sc/inc/token.hxx
+0
-1
token.cxx
sc/source/core/tool/token.cxx
+0
-23
No files found.
formula/source/core/api/token.cxx
Dosyayı görüntüle @
d9f303a0
...
...
@@ -74,11 +74,6 @@ FormulaToken::~FormulaToken()
{
}
bool
FormulaToken
::
Is3DRef
()
const
{
return
false
;
}
bool
FormulaToken
::
IsFunction
()
const
{
return
(
eOp
!=
ocPush
&&
eOp
!=
ocBad
&&
eOp
!=
ocColRowName
&&
...
...
include/formula/token.hxx
Dosyayı görüntüle @
d9f303a0
...
...
@@ -156,7 +156,6 @@ public:
virtual
FormulaToken
*
Clone
()
const
{
return
new
FormulaToken
(
*
this
);
}
virtual
bool
Is3DRef
()
const
;
// reference with 3D flag set
virtual
bool
TextEqual
(
const
formula
::
FormulaToken
&
rToken
)
const
;
virtual
bool
operator
==
(
const
FormulaToken
&
rToken
)
const
;
...
...
sc/inc/token.hxx
Dosyayı görüntüle @
d9f303a0
...
...
@@ -89,7 +89,6 @@ public:
virtual
ScRefList
*
GetRefList
();
virtual
bool
TextEqual
(
const
formula
::
FormulaToken
&
rToken
)
const
SAL_OVERRIDE
;
virtual
bool
Is3DRef
()
const
SAL_OVERRIDE
;
// reference with 3D flag set
#if DEBUG_FORMULA_COMPILER
virtual
void
Dump
()
const
;
...
...
sc/source/core/tool/token.cxx
Dosyayı görüntüle @
d9f303a0
...
...
@@ -510,29 +510,6 @@ bool ScToken::TextEqual( const FormulaToken& _rToken ) const
return
*
this
==
_rToken
;
// else normal operator==
}
bool
ScToken
::
Is3DRef
()
const
{
switch
(
eType
)
{
case
svDoubleRef
:
if
(
GetSingleRef2
().
IsFlag3D
()
)
return
true
;
//! fallthru
case
svSingleRef
:
if
(
GetSingleRef
().
IsFlag3D
()
)
return
true
;
break
;
case
svExternalSingleRef
:
case
svExternalDoubleRef
:
return
true
;
default
:
{
// added to avoid warnings
}
}
return
false
;
}
#if DEBUG_FORMULA_COMPILER
void
ScToken
::
Dump
()
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