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
af70bc00
Kaydet (Commit)
af70bc00
authored
Ock 26, 2012
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#44143: Keep cells with broadcasters alive during deletion.
Or else it would partially break formula reference chain.
üst
d3e30409
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
column3.cxx
sc/source/core/data/column3.cxx
+7
-0
dpoutput.cxx
sc/source/core/data/dpoutput.cxx
+0
-5
No files found.
sc/source/core/data/column3.cxx
Dosyayı görüntüle @
af70bc00
...
@@ -35,6 +35,7 @@
...
@@ -35,6 +35,7 @@
#include <sfx2/objsh.hxx>
#include <sfx2/objsh.hxx>
#include <svl/zforlist.hxx>
#include <svl/zforlist.hxx>
#include <svl/zformat.hxx>
#include <svl/zformat.hxx>
#include <svl/broadcast.hxx>
#include "scitems.hxx"
#include "scitems.hxx"
#include "column.hxx"
#include "column.hxx"
...
@@ -414,6 +415,12 @@ void ScColumn::DeleteRange( SCSIZE nStartIndex, SCSIZE nEndIndex, sal_uInt16 nDe
...
@@ -414,6 +415,12 @@ void ScColumn::DeleteRange( SCSIZE nStartIndex, SCSIZE nEndIndex, sal_uInt16 nDe
if
(
pNote
||
pBC
)
if
(
pNote
||
pBC
)
pNoteCell
=
new
ScNoteCell
(
pNote
,
pBC
);
pNoteCell
=
new
ScNoteCell
(
pNote
,
pBC
);
}
}
else
{
SvtBroadcaster
*
pBC
=
pOldCell
->
GetBroadcaster
();
if
(
pBC
&&
pBC
->
HasListeners
())
pNoteCell
=
new
ScNoteCell
(
pOldCell
->
ReleaseNote
(),
pBC
);
}
// remove cell entry in cell item list
// remove cell entry in cell item list
SCROW
nOldRow
=
maItems
[
nIdx
].
nRow
;
SCROW
nOldRow
=
maItems
[
nIdx
].
nRow
;
...
...
sc/source/core/data/dpoutput.cxx
Dosyayı görüntüle @
af70bc00
...
@@ -973,11 +973,6 @@ void ScDPOutput::Output()
...
@@ -973,11 +973,6 @@ void ScDPOutput::Output()
if
(
bSizeOverflow
||
bResultsError
)
// does output area exceed sheet limits?
if
(
bSizeOverflow
||
bResultsError
)
// does output area exceed sheet limits?
return
;
// nothing
return
;
// nothing
// clear whole (new) output area
//! when modifying table, clear old area
//! include IDF_OBJECTS ???
pDoc
->
DeleteAreaTab
(
aStartPos
.
Col
(),
aStartPos
.
Row
(),
nTabEndCol
,
nTabEndRow
,
nTab
,
IDF_ALL
);
if
(
bDoFilter
)
if
(
bDoFilter
)
lcl_DoFilterButton
(
pDoc
,
aStartPos
.
Col
(),
aStartPos
.
Row
(),
nTab
);
lcl_DoFilterButton
(
pDoc
,
aStartPos
.
Col
(),
aStartPos
.
Row
(),
nTab
);
...
...
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