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
109717c9
Kaydet (Commit)
109717c9
authored
Mar 30, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: prefix members of SwEditShell
Change-Id: I8a06e0660767f23518952e22cca1b56c16d0bbd1
üst
3e7431f5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
15 deletions
+15
-15
editsh.hxx
sw/inc/editsh.hxx
+4
-4
init.cxx
sw/source/core/bastyp/init.cxx
+1
-1
autofmt.cxx
sw/source/core/edit/autofmt.cxx
+4
-4
edws.cxx
sw/source/core/edit/edws.cxx
+6
-6
No files found.
sw/inc/editsh.hxx
Dosyayı görüntüle @
109717c9
...
@@ -137,9 +137,9 @@ typedef boost::ptr_vector<SwGetINetAttr> SwGetINetAttrs;
...
@@ -137,9 +137,9 @@ typedef boost::ptr_vector<SwGetINetAttr> SwGetINetAttrs;
#define CNT_HasGrf(USH) ((USH)&CNT_GRF)
#define CNT_HasGrf(USH) ((USH)&CNT_GRF)
#define CNT_HasOLE(USH) ((USH)&CNT_OLE)
#define CNT_HasOLE(USH) ((USH)&CNT_OLE)
class
SW_DLLPUBLIC
SwEditShell
:
public
SwCrsrShell
class
SW_DLLPUBLIC
SwEditShell
:
public
SwCrsrShell
{
{
static
SvxSwAutoFmtFlags
*
pAutoFmtFlags
;
static
SvxSwAutoFmtFlags
*
s_
pAutoFmtFlags
;
/// For the private methods DelRange and those of AutoCorrect.
/// For the private methods DelRange and those of AutoCorrect.
friend
class
SwAutoFormat
;
friend
class
SwAutoFormat
;
...
@@ -952,7 +952,7 @@ inline const sfx2::LinkManager& SwEditShell::GetLinkManager() const
...
@@ -952,7 +952,7 @@ inline const sfx2::LinkManager& SwEditShell::GetLinkManager() const
/// Class for automated call of Start- and EndAction().
/// Class for automated call of Start- and EndAction().
class
SwActContext
{
class
SwActContext
{
SwEditShell
*
pSh
;
SwEditShell
&
m_rShell
;
public
:
public
:
SwActContext
(
SwEditShell
*
pShell
);
SwActContext
(
SwEditShell
*
pShell
);
~
SwActContext
();
~
SwActContext
();
...
@@ -960,7 +960,7 @@ public:
...
@@ -960,7 +960,7 @@ public:
/// Class for automated call of Start- and EndCrsrMove().
/// Class for automated call of Start- and EndCrsrMove().
class
SwMvContext
{
class
SwMvContext
{
SwEditShell
*
pSh
;
SwEditShell
&
m_rShell
;
public
:
public
:
SwMvContext
(
SwEditShell
*
pShell
);
SwMvContext
(
SwEditShell
*
pShell
);
~
SwMvContext
();
~
SwMvContext
();
...
...
sw/source/core/bastyp/init.cxx
Dosyayı görüntüle @
109717c9
...
@@ -763,7 +763,7 @@ void _FinitCore()
...
@@ -763,7 +763,7 @@ void _FinitCore()
delete
SwSelPaintRects
::
s_pMapMode
;
delete
SwSelPaintRects
::
s_pMapMode
;
delete
SwFntObj
::
pPixMap
;
delete
SwFntObj
::
pPixMap
;
delete
SwEditShell
::
pAutoFmtFlags
;
delete
SwEditShell
::
s_
pAutoFmtFlags
;
#if OSL_DEBUG_LEVEL > 0
#if OSL_DEBUG_LEVEL > 0
// free defaults to prevent assertions
// free defaults to prevent assertions
...
...
sw/source/core/edit/autofmt.cxx
Dosyayı görüntüle @
109717c9
...
@@ -81,7 +81,7 @@ const int cnPosEnDash = 2, cnPosEmDash = 4;
...
@@ -81,7 +81,7 @@ const int cnPosEnDash = 2, cnPosEmDash = 4;
const
sal_Unicode
cStarSymbolEnDash
=
0x2013
;
const
sal_Unicode
cStarSymbolEnDash
=
0x2013
;
const
sal_Unicode
cStarSymbolEmDash
=
0x2014
;
const
sal_Unicode
cStarSymbolEmDash
=
0x2014
;
SvxSwAutoFmtFlags
*
SwEditShell
::
pAutoFmtFlags
=
0
;
SvxSwAutoFmtFlags
*
SwEditShell
::
s_pAutoFmtFlags
=
nullptr
;
// Number of num-/bullet-paragraph templates. MAXLEVEL will soon be raised
// Number of num-/bullet-paragraph templates. MAXLEVEL will soon be raised
// to x, but not the number of templates. (Artifact from <= 4.0)
// to x, but not the number of templates. (Artifact from <= 4.0)
...
@@ -2606,10 +2606,10 @@ void SwEditShell::AutoFmtBySplitNode()
...
@@ -2606,10 +2606,10 @@ void SwEditShell::AutoFmtBySplitNode()
SvxSwAutoFmtFlags
*
SwEditShell
::
GetAutoFmtFlags
()
SvxSwAutoFmtFlags
*
SwEditShell
::
GetAutoFmtFlags
()
{
{
if
(
!
pAutoFmtFlags
)
if
(
!
s_
pAutoFmtFlags
)
pAutoFmtFlags
=
new
SvxSwAutoFmtFlags
;
s_
pAutoFmtFlags
=
new
SvxSwAutoFmtFlags
;
return
pAutoFmtFlags
;
return
s_
pAutoFmtFlags
;
}
}
void
SwEditShell
::
SetAutoFmtFlags
(
SvxSwAutoFmtFlags
*
pFlags
)
void
SwEditShell
::
SetAutoFmtFlags
(
SvxSwAutoFmtFlags
*
pFlags
)
...
...
sw/source/core/edit/edws.cxx
Dosyayı görüntüle @
109717c9
...
@@ -148,25 +148,25 @@ bool SwEditShell::HasOtherCnt() const
...
@@ -148,25 +148,25 @@ bool SwEditShell::HasOtherCnt() const
// access control functions for file name handling
// access control functions for file name handling
SwActContext
::
SwActContext
(
SwEditShell
*
pShell
)
SwActContext
::
SwActContext
(
SwEditShell
*
pShell
)
:
pSh
(
pShell
)
:
m_rShell
(
*
pShell
)
{
{
pSh
->
StartAction
();
m_rShell
.
StartAction
();
}
}
SwActContext
::~
SwActContext
()
SwActContext
::~
SwActContext
()
{
{
pSh
->
EndAction
();
m_rShell
.
EndAction
();
}
}
SwMvContext
::
SwMvContext
(
SwEditShell
*
pShell
)
SwMvContext
::
SwMvContext
(
SwEditShell
*
pShell
)
:
pSh
(
pShell
)
:
m_rShell
(
*
pShell
)
{
{
pSh
->
SttCrsrMove
();
m_rShell
.
SttCrsrMove
();
}
}
SwMvContext
::~
SwMvContext
()
SwMvContext
::~
SwMvContext
()
{
{
pSh
->
EndCrsrMove
();
m_rShell
.
EndCrsrMove
();
}
}
SwFrmFmt
*
SwEditShell
::
GetTableFmt
()
// fastest test on a table
SwFrmFmt
*
SwEditShell
::
GetTableFmt
()
// fastest test on a table
...
...
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