diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-03 14:43:21 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-03 16:05:12 +0100 |
commit | 06f45db7eee542a0dc869db1ac26c1ea6f77570f (patch) | |
tree | 2556081bc866c163c0eb38d10004c7eb4442a6ab /sw/source | |
parent | 38a5b7e9788bf53e8b943e74486b74780c01d39b (diff) |
Remove needless SW_DLLPRIVATE annotations
Change-Id: Iae7d6ca73d64b1fa95cdd3f84e6ad51fb0015e4d
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/inc/UndoCore.hxx | 4 | ||||
-rw-r--r-- | sw/source/core/inc/UndoInsert.hxx | 2 | ||||
-rw-r--r-- | sw/source/core/inc/UndoSection.hxx | 4 | ||||
-rw-r--r-- | sw/source/core/undo/unsect.cxx | 4 | ||||
-rw-r--r-- | sw/source/ui/inc/wordcountdialog.hxx | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/sw/source/core/inc/UndoCore.hxx b/sw/source/core/inc/UndoCore.hxx index 44d99e32ba41..bb37fc7c6c48 100644 --- a/sw/source/core/inc/UndoCore.hxx +++ b/sw/source/core/inc/UndoCore.hxx @@ -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: diff --git a/sw/source/core/inc/UndoInsert.hxx b/sw/source/core/inc/UndoInsert.hxx index b9a3b999c47c..56d72c607cad 100644 --- a/sw/source/core/inc/UndoInsert.hxx +++ b/sw/source/core/inc/UndoInsert.hxx @@ -83,7 +83,7 @@ public: DECL_FIXEDMEMPOOL_NEWDEL(SwUndoInsert) }; -SwRewriter SW_DLLPRIVATE +SwRewriter MakeUndoReplaceRewriter(sal_uLong const ocurrences, OUString const& sOld, OUString const& sNew); diff --git a/sw/source/core/inc/UndoSection.hxx b/sw/source/core/inc/UndoSection.hxx index 00de819f50e0..ea681525192f 100644 --- a/sw/source/core/inc/UndoSection.hxx +++ b/sw/source/core/inc/UndoSection.hxx @@ -61,9 +61,9 @@ public: void SetUpdtFtnFlag(bool const bFlag) { m_bUpdateFtn = bFlag; } }; -SW_DLLPRIVATE SwUndo * MakeUndoDelSection(SwSectionFmt const&); +SwUndo * MakeUndoDelSection(SwSectionFmt const&); -SW_DLLPRIVATE SwUndo * MakeUndoUpdateSection(SwSectionFmt const&, bool const); +SwUndo * MakeUndoUpdateSection(SwSectionFmt const&, bool const); #endif // INCLUDED_SW_SOURCE_CORE_INC_UNDOSECTION_HXX diff --git a/sw/source/core/undo/unsect.cxx b/sw/source/core/undo/unsect.cxx index 86c488aa68bb..4af1dccde8ce 100644 --- a/sw/source/core/undo/unsect.cxx +++ b/sw/source/core/undo/unsect.cxx @@ -296,7 +296,7 @@ public: virtual void RedoImpl( ::sw::UndoRedoContext & ); }; -SW_DLLPRIVATE SwUndo * 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 & ); }; -SW_DLLPRIVATE SwUndo * +SwUndo * MakeUndoUpdateSection(SwSectionFmt const& rFormat, bool const bOnlyAttr) { return new SwUndoUpdateSection(*rFormat.GetSection(), diff --git a/sw/source/ui/inc/wordcountdialog.hxx b/sw/source/ui/inc/wordcountdialog.hxx index fbd2e8ea1254..3bebd69f4967 100644 --- a/sw/source/ui/inc/wordcountdialog.hxx +++ b/sw/source/ui/inc/wordcountdialog.hxx @@ -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, |