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
02e462f5
Kaydet (Commit)
02e462f5
authored
Agu 06, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused bNeedDel parameter to SwCntntNode::DelFrms
Change-Id: Iedc5e8caafda868db853fdf328fbdc99bbf28e20
üst
660931a0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
7 deletions
+5
-7
node.hxx
sw/inc/node.hxx
+1
-1
node.cxx
sw/source/core/docnode/node.cxx
+3
-5
nodes.cxx
sw/source/core/docnode/nodes.cxx
+1
-1
No files found.
sw/inc/node.hxx
Dosyayı görüntüle @
02e462f5
...
...
@@ -427,7 +427,7 @@ public:
Add an input param to identify if acc table should be disposed
*/
void
DelFrms
(
bool
b
NeedDel
=
false
,
bool
b
IsAccTableDispose
=
true
);
void
DelFrms
(
bool
bIsAccTableDispose
=
true
);
/** @return count of elements of node content. Default is 1.
There are differences between text node and formula node. */
...
...
sw/source/core/docnode/node.cxx
Dosyayı görüntüle @
02e462f5
...
...
@@ -913,7 +913,7 @@ SwCntntNode::~SwCntntNode()
// The base class SwClient of SwFrm excludes itself from the dependency list!
// Thus, we need to delete all Frames in the dependency list.
if
(
GetDepends
()
)
DelFrms
(
true
,
false
);
DelFrms
(
false
);
delete
pCondColl
;
...
...
@@ -1224,11 +1224,9 @@ void SwCntntNode::MakeFrms( SwCntntNode& rNode )
* Deletes all Views from the Doc for this Node.
* The ContentFrames are removed from the corresponding Layout.
*
* An input param to identify if the acc table should be disposed. and a
* flag(bNeedDel) to indicate whether to del corresponding frm even in doc
* loading process,
* An input param to identify if the acc table should be disposed.
*/
void
SwCntntNode
::
DelFrms
(
bool
/*bNeedDel*/
,
bool
bIsDisposeAccTable
)
void
SwCntntNode
::
DelFrms
(
bool
bIsDisposeAccTable
)
{
if
(
!
GetDepends
()
)
return
;
...
...
sw/source/core/docnode/nodes.cxx
Dosyayı görüntüle @
02e462f5
...
...
@@ -799,7 +799,7 @@ bool SwNodes::_MoveNodes( const SwNodeRange& aRange, SwNodes & rNodes,
//Add special function to text node.
{
if
(
bNewFrms
&&
pAktNode
->
GetCntntNode
()
)
((
SwCntntNode
*
)
pAktNode
)
->
DelFrms
(
false
);
((
SwCntntNode
*
)
pAktNode
)
->
DelFrms
();
pAktNode
->
pStartOfSection
=
aSttNdStack
[
nLevel
];
nInsPos
++
;
aRg
.
aEnd
--
;
...
...
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