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
06f45db7
Kaydet (Commit)
06f45db7
authored
Şub 03, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove needless SW_DLLPRIVATE annotations
Change-Id: Iae7d6ca73d64b1fa95cdd3f84e6ad51fb0015e4d
üst
38a5b7e9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
11 deletions
+11
-11
ndhints.hxx
sw/inc/ndhints.hxx
+3
-3
UndoCore.hxx
sw/source/core/inc/UndoCore.hxx
+2
-2
UndoInsert.hxx
sw/source/core/inc/UndoInsert.hxx
+1
-1
UndoSection.hxx
sw/source/core/inc/UndoSection.hxx
+2
-2
unsect.cxx
sw/source/core/undo/unsect.cxx
+2
-2
wordcountdialog.hxx
sw/source/ui/inc/wordcountdialog.hxx
+1
-1
No files found.
sw/inc/ndhints.hxx
Dosyayı görüntüle @
06f45db7
...
...
@@ -40,7 +40,7 @@ typedef enum {
}
CopyOrNew_t
;
/// if COPY then pTxtNode must be given!
S
W_DLLPRIVATE
S
wTxtAttr
*
MakeTxtAttr
(
SwTxtAttr
*
MakeTxtAttr
(
SwDoc
&
rDoc
,
SfxPoolItem
&
rNew
,
sal_Int32
const
nStt
,
...
...
@@ -48,14 +48,14 @@ SW_DLLPRIVATE SwTxtAttr * MakeTxtAttr(
CopyOrNew_t
const
bIsCopy
=
NEW
,
SwTxtNode
*
const
pTxtNode
=
0
);
S
W_DLLPRIVATE
S
wTxtAttr
*
MakeTxtAttr
(
SwTxtAttr
*
MakeTxtAttr
(
SwDoc
&
rDoc
,
const
SfxItemSet
&
rSet
,
sal_Int32
nStt
,
sal_Int32
nEnd
);
/// create redline dummy text hint that must not be inserted into hints array
S
W_DLLPRIVATE
S
wTxtAttr
*
MakeRedlineTxtAttr
(
SwTxtAttr
*
MakeRedlineTxtAttr
(
SwDoc
&
rDoc
,
SfxPoolItem
&
rAttr
);
...
...
sw/source/core/inc/UndoCore.hxx
Dosyayı görüntüle @
06f45db7
...
...
@@ -45,7 +45,7 @@ public:
};
namespace
sw
{
class
SW_DLLPRIVATE
UndoRedoContext
class
UndoRedoContext
:
public
SfxUndoContext
{
public
:
...
...
@@ -78,7 +78,7 @@ private:
SdrMarkList
*
m_pMarkList
;
};
class
SW_DLLPRIVATE
RepeatContext
class
RepeatContext
:
public
SfxRepeatTarget
{
public
:
...
...
sw/source/core/inc/UndoInsert.hxx
Dosyayı görüntüle @
06f45db7
...
...
@@ -83,7 +83,7 @@ public:
DECL_FIXEDMEMPOOL_NEWDEL
(
SwUndoInsert
)
};
SwRewriter
SW_DLLPRIVATE
SwRewriter
MakeUndoReplaceRewriter
(
sal_uLong
const
ocurrences
,
OUString
const
&
sOld
,
OUString
const
&
sNew
);
...
...
sw/source/core/inc/UndoSection.hxx
Dosyayı görüntüle @
06f45db7
...
...
@@ -61,9 +61,9 @@ public:
void
SetUpdtFtnFlag
(
bool
const
bFlag
)
{
m_bUpdateFtn
=
bFlag
;
}
};
S
W_DLLPRIVATE
S
wUndo
*
MakeUndoDelSection
(
SwSectionFmt
const
&
);
SwUndo
*
MakeUndoDelSection
(
SwSectionFmt
const
&
);
S
W_DLLPRIVATE
S
wUndo
*
MakeUndoUpdateSection
(
SwSectionFmt
const
&
,
bool
const
);
SwUndo
*
MakeUndoUpdateSection
(
SwSectionFmt
const
&
,
bool
const
);
#endif // INCLUDED_SW_SOURCE_CORE_INC_UNDOSECTION_HXX
...
...
sw/source/core/undo/unsect.cxx
Dosyayı görüntüle @
06f45db7
...
...
@@ -296,7 +296,7 @@ public:
virtual
void
RedoImpl
(
::
sw
::
UndoRedoContext
&
);
};
S
W_DLLPRIVATE
S
wUndo
*
MakeUndoDelSection
(
SwSectionFmt
const
&
rFormat
)
SwUndo
*
MakeUndoDelSection
(
SwSectionFmt
const
&
rFormat
)
{
return
new
SwUndoDelSection
(
rFormat
,
*
rFormat
.
GetSection
(),
rFormat
.
GetCntnt
().
GetCntntIdx
());
...
...
@@ -409,7 +409,7 @@ public:
virtual
void
RedoImpl
(
::
sw
::
UndoRedoContext
&
);
};
S
W_DLLPRIVATE
S
wUndo
*
SwUndo
*
MakeUndoUpdateSection
(
SwSectionFmt
const
&
rFormat
,
bool
const
bOnlyAttr
)
{
return
new
SwUndoUpdateSection
(
*
rFormat
.
GetSection
(),
...
...
sw/source/ui/inc/wordcountdialog.hxx
Dosyayı görüntüle @
06f45db7
...
...
@@ -46,7 +46,7 @@ class SwWordCountFloatDlg : public SfxModelessDialog
CloseButton
*
m_pClosePB
;
SW_DLLPRIVATE
DECL_LINK
(
CloseHdl
,
void
*
);
DECL_LINK
(
CloseHdl
,
void
*
);
public
:
SwWordCountFloatDlg
(
SfxBindings
*
pBindings
,
SfxChildWindow
*
pChild
,
...
...
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