summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2015-02-17 21:31:21 +0100
committerLuboš Luňák <l.lunak@collabora.com>2015-02-26 16:56:41 +0100
commit5a6655ef9d02b9cb5d504d2df6337654c278c151 (patch)
tree7e5f0895545a2a23239d925df4f269987a3d3bf4
parent5a7bb3f0484654fd0499e9bb030c83284e0d6571 (diff)
do not needlessly make overriden functions more private
These are public in the base class. Change-Id: I839ffe56a835f99c2812cffb60804b74aaa9c5ac
-rw-r--r--sw/source/ui/inc/view.hxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/sw/source/ui/inc/view.hxx b/sw/source/ui/inc/view.hxx
index 056ae0dd6a41..4a42580562a3 100644
--- a/sw/source/ui/inc/view.hxx
+++ b/sw/source/ui/inc/view.hxx
@@ -336,11 +336,6 @@ class SW_DLLPUBLIC SwView: public SfxViewShell
SW_DLLPRIVATE void SpellKontext(sal_Bool bOn = sal_True)
{ m_bCenterCrsr = bOn; m_bAlwaysShowSel = bOn; }
- // methods for printing
- SW_DLLPRIVATE virtual SfxPrinter* GetPrinter( sal_Bool bCreate = sal_False );
- SW_DLLPRIVATE virtual bool HasPrintOptionsPage() const;
- SW_DLLPRIVATE virtual SfxTabPage* CreatePrintOptionsPage( Window* pParent,
- const SfxItemSet& rSet);
// for readonly switching
SW_DLLPRIVATE virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint );
SW_DLLPRIVATE void _CheckReadonlyState();
@@ -663,6 +658,12 @@ public:
void UpdateDocStats();
/// Where is the real cursor: in the annotation or in the main document?
void SetAnnotationMode(bool bMode);
+
+ // methods for printing
+ SW_DLLPRIVATE virtual SfxPrinter* GetPrinter( sal_Bool bCreate = sal_False );
+ SW_DLLPRIVATE virtual bool HasPrintOptionsPage() const;
+ SW_DLLPRIVATE virtual SfxTabPage* CreatePrintOptionsPage( Window* pParent,
+ const SfxItemSet& rSet);
};
// ----------------- inline Methoden ----------------------