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
95de10e0
Kaydet (Commit)
95de10e0
authored
Nis 10, 2017
tarafından
Eike Rathke
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
narrow the assert condition further down
Change-Id: Ia9b1db652b2f15b66b89b51038d16fb0da6ffb6d
üst
ca24976b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
postit.cxx
sc/source/core/data/postit.cxx
+4
-3
No files found.
sc/source/core/data/postit.cxx
Dosyayı görüntüle @
95de10e0
...
...
@@ -1097,10 +1097,11 @@ void ScPostIt::RemoveCaption()
}
// Either the caption object is gone or, because of Undo or clipboard is
// held in at least two instances, or only one instance in Undo because the
// original sheet
was deleted, or the Undo document is just destroyed
// which leaves us with one reference.
// original sheet
in this document is just deleted, or the Undo document is
//
just destroyed
which leaves us with one reference.
// Let's detect other use cases..
assert
(
!
maNoteData
.
mxCaption
||
maNoteData
.
mxCaption
.
getRefs
()
>=
2
||
!
mrDoc
.
IsUndo
()
||
mrDoc
.
IsInDtorClear
());
assert
(
!
maNoteData
.
mxCaption
||
maNoteData
.
mxCaption
.
getRefs
()
>=
2
||
(
!
mrDoc
.
IsUndo
()
&&
!
mrDoc
.
IsClipboard
())
||
(
mrDoc
.
IsUndo
()
&&
mrDoc
.
IsInDtorClear
()));
maNoteData
.
mxCaption
.
reset
(
nullptr
);
}
...
...
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