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
412d3a8f
Kaydet (Commit)
412d3a8f
authored
Kas 14, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: prefix members of SwUndoDelete
Change-Id: I9a31850ac3524b8f2fae6513f4d378f8616eb30d
üst
3a906ced
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
21 deletions
+21
-21
UndoDelete.hxx
sw/source/core/inc/UndoDelete.hxx
+21
-21
undel.cxx
sw/source/core/undo/undel.cxx
+0
-0
No files found.
sw/source/core/inc/UndoDelete.hxx
Dosyayı görüntüle @
412d3a8f
...
...
@@ -36,29 +36,29 @@ class SwUndoDelete
,
private
SwUndRng
,
private
SwUndoSaveContent
{
SwNodeIndex
*
pMvStt
;
// Position of Nodes in UndoNodes-Array
OUString
*
pSttStr
,
*
pEndStr
;
SwRedlineData
*
pRedlData
;
SwRedlineSaveDatas
*
pRedlSaveData
;
SwNodeIndex
*
m_
pMvStt
;
// Position of Nodes in UndoNodes-Array
OUString
*
m_pSttStr
,
*
m_
pEndStr
;
SwRedlineData
*
m_
pRedlData
;
SwRedlineSaveDatas
*
m_
pRedlSaveData
;
std
::
shared_ptr
<
::
sfx2
::
MetadatableUndo
>
m_pMetadataUndoStart
;
std
::
shared_ptr
<
::
sfx2
::
MetadatableUndo
>
m_pMetadataUndoEnd
;
OUString
sTableName
;
OUString
m_
sTableName
;
sal_uLong
nNode
;
sal_uLong
nNdDiff
;
// difference of Nodes before/after Delete
sal_uLong
nSectDiff
;
// diff. of Nodes before/after Move w/ SectionNodes
sal_uLong
nReplaceDummy
;
// diff. to a temporary dummy object
sal_uInt16
nSetPos
;
sal_uLong
m_
nNode
;
sal_uLong
m_
nNdDiff
;
// difference of Nodes before/after Delete
sal_uLong
m_
nSectDiff
;
// diff. of Nodes before/after Move w/ SectionNodes
sal_uLong
m_
nReplaceDummy
;
// diff. to a temporary dummy object
sal_uInt16
m_
nSetPos
;
bool
bGroup
:
1
;
// TRUE: is already Grouped; see CanGrouping()
bool
bBackSp
:
1
;
// TRUE: if Grouped and preceding content deleted
bool
bJoinNext
:
1
;
// TRUE: if range is selected forwards
bool
bTableDelLastNd
:
1
;
// TRUE: TextNode following Table inserted/deleted
bool
bDelFullPara
:
1
;
// TRUE: entire Nodes were deleted
bool
bResetPgDesc
:
1
;
// TRUE: reset PgDsc on following node
bool
bResetPgBrk
:
1
;
// TRUE: reset PgBreak on following node
bool
bFromTableCopy
:
1
;
// TRUE: called by SwUndoTableCpyTable
bool
m_
bGroup
:
1
;
// TRUE: is already Grouped; see CanGrouping()
bool
m_
bBackSp
:
1
;
// TRUE: if Grouped and preceding content deleted
bool
m_
bJoinNext
:
1
;
// TRUE: if range is selected forwards
bool
m_
bTableDelLastNd
:
1
;
// TRUE: TextNode following Table inserted/deleted
bool
m_
bDelFullPara
:
1
;
// TRUE: entire Nodes were deleted
bool
m_
bResetPgDesc
:
1
;
// TRUE: reset PgDsc on following node
bool
m_
bResetPgBrk
:
1
;
// TRUE: reset PgBreak on following node
bool
m_
bFromTableCopy
:
1
;
// TRUE: called by SwUndoTableCpyTable
bool
SaveContent
(
const
SwPosition
*
pStt
,
const
SwPosition
*
pEnd
,
SwTextNode
*
pSttTextNd
,
SwTextNode
*
pEndTextNd
);
...
...
@@ -88,16 +88,16 @@ public:
bool
CanGrouping
(
SwDoc
*
,
const
SwPaM
&
);
void
SetTableDelLastNd
()
{
bTableDelLastNd
=
true
;
}
void
SetTableDelLastNd
()
{
m_
bTableDelLastNd
=
true
;
}
// for PageDesc/PageBreak Attributes of a table
void
SetPgBrkFlags
(
bool
bPageBreak
,
bool
bPageDesc
)
{
bResetPgDesc
=
bPageDesc
;
bResetPgBrk
=
bPageBreak
;
}
{
m_bResetPgDesc
=
bPageDesc
;
m_
bResetPgBrk
=
bPageBreak
;
}
void
SetTableName
(
const
OUString
&
rName
);
// SwUndoTableCpyTable needs this information:
bool
IsDelFullPara
()
const
{
return
bDelFullPara
;
}
bool
IsDelFullPara
()
const
{
return
m_
bDelFullPara
;
}
DECL_FIXEDMEMPOOL_NEWDEL
(
SwUndoDelete
)
};
...
...
sw/source/core/undo/undel.cxx
Dosyayı görüntüle @
412d3a8f
This diff is collapsed.
Click to expand it.
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