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
d46203b5
Kaydet (Commit)
d46203b5
authored
Ara 01, 2015
tarafından
Eike Rathke
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Resolves: tdf#95748 no group interpreter when calculations are running
Change-Id: I17283fc5e39da2d7222c302dd63522df69d0ad96
üst
87ad1705
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
7 deletions
+16
-7
formulacell.cxx
sc/source/core/data/formulacell.cxx
+16
-7
No files found.
sc/source/core/data/formulacell.cxx
Dosyayı görüntüle @
d46203b5
...
...
@@ -1551,15 +1551,24 @@ void ScFormulaCell::Interpret()
}
else
{
// Do not attempt to interpret a group when calculations are already
// running, otherwise we may run into a circular reference hell. See
// tdf#95748
if
(
rRecursionHelper
.
GetRecursionCount
())
InterpretTail
(
SCITP_NORMAL
);
else
{
#if DEBUG_CALCULATION
aDC
.
enterGroup
();
#endif
bool
bGroupInterpreted
=
InterpretFormulaGroup
();
#if DEBUG_CALCULATION
aDC
.
leaveGroup
();
aDC
.
enterGroup
();
bool
bGroupInterpreted
=
InterpretFormulaGroup
();
aDC
.
leaveGroup
();
if
(
!
bGroupInterpreted
)
InterpretTail
(
SCITP_NORMAL
);
#else
if
(
!
InterpretFormulaGroup
())
InterpretTail
(
SCITP_NORMAL
);
#endif
if
(
!
bGroupInterpreted
)
InterpretTail
(
SCITP_NORMAL
);
}
}
// While leaving a recursion or iteration stack, insert its cells to the
...
...
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