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
c72498d7
Kaydet (Commit)
c72498d7
authored
Tem 14, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Revert "loplugin:unreffun"
This reverts commit
e3246e80
. Which was a mistake.
üst
c29338e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
formulaparser.cxx
sc/source/filter/oox/formulaparser.cxx
+8
-0
No files found.
sc/source/filter/oox/formulaparser.cxx
Dosyayı görüntüle @
c72498d7
...
...
@@ -472,6 +472,7 @@ protected:
size_t
appendWhiteSpaceTokens
(
const
WhiteSpaceVec
*
pSpaces
);
size_t
insertWhiteSpaceTokens
(
const
WhiteSpaceVec
*
pSpaces
,
size_t
nIndexFromEnd
);
size_t
getOperandSize
(
size_t
nOpCountFromEnd
,
size_t
nOpIndex
)
const
;
void
pushOperandSize
(
size_t
nSize
);
size_t
popOperandSize
();
...
...
@@ -724,6 +725,13 @@ size_t FormulaParserImpl::insertWhiteSpaceTokens( const WhiteSpaceVec* pSpaces,
return
pSpaces
?
pSpaces
->
size
()
:
0
;
}
size_t
FormulaParserImpl
::
getOperandSize
(
size_t
nOpCountFromEnd
,
size_t
nOpIndex
)
const
{
OSL_ENSURE
(
(
nOpIndex
<
nOpCountFromEnd
)
&&
(
nOpCountFromEnd
<=
maOperandSizeStack
.
size
()),
"FormulaParserImpl::getOperandSize - invalid parameters"
);
return
maOperandSizeStack
[
maOperandSizeStack
.
size
()
-
nOpCountFromEnd
+
nOpIndex
];
}
void
FormulaParserImpl
::
pushOperandSize
(
size_t
nSize
)
{
maOperandSizeStack
.
push_back
(
nSize
);
...
...
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