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
63b5af3d
Kaydet (Commit)
63b5af3d
authored
Ock 04, 2013
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
don't forget the dependency tree during formula import
Change-Id: I0a9137e4f72477c0cffde6056d8952aa08e13f35
üst
86024f7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
xmlcelli.cxx
sc/source/filter/xml/xmlcelli.cxx
+3
-3
No files found.
sc/source/filter/xml/xmlcelli.cxx
Dosyayı görüntüle @
63b5af3d
...
...
@@ -1025,16 +1025,16 @@ void ScXMLTableRowCellContext::PutFormulaCell( const ScAddress& rCellPos )
if
(
aText
[
0
]
==
'='
&&
aText
.
getLength
()
>
1
)
{
// temporary formula string as string tokens
ScTokenArray
*
pCode
=
new
ScTokenArray
;
boost
::
scoped_ptr
<
ScTokenArray
>
pCode
(
new
ScTokenArray
)
;
pCode
->
AddStringXML
(
aText
);
if
(
(
eGrammar
==
formula
::
FormulaGrammar
::
GRAM_EXTERNAL
)
&&
!
aFormulaNmsp
.
isEmpty
()
)
pCode
->
AddStringXML
(
aFormulaNmsp
);
pDoc
->
IncXMLImportedFormulaCount
(
aText
.
getLength
()
);
pNewCell
=
new
ScFormulaCell
(
pDoc
,
rCellPos
,
pCode
,
eGrammar
,
MM_NONE
);
delete
pCode
;
pNewCell
=
new
ScFormulaCell
(
pDoc
,
rCellPos
,
pCode
.
get
(),
eGrammar
,
MM_NONE
);
ScFormulaCell
*
pFCell
=
static_cast
<
ScFormulaCell
*>
(
pNewCell
);
pFCell
->
StartListeningTo
(
pDoc
);
SetFormulaCell
(
pFCell
);
}
else
if
(
aText
[
0
]
==
'\''
&&
aText
.
getLength
()
>
1
)
...
...
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