summaryrefslogtreecommitdiff
path: root/sw/source/ui/envelp
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/envelp')
-rw-r--r--sw/source/ui/envelp/envprt.hxx2
-rw-r--r--sw/source/ui/envelp/labprt.hxx2
-rw-r--r--sw/source/ui/envelp/swuilabimp.hxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/envelp/envprt.hxx b/sw/source/ui/envelp/envprt.hxx
index f9d1b18354fa..523a51cbce4b 100644
--- a/sw/source/ui/envelp/envprt.hxx
+++ b/sw/source/ui/envelp/envprt.hxx
@@ -68,7 +68,7 @@ public:
virtual bool FillItemSet(SfxItemSet* rSet) override;
virtual void Reset(const SfxItemSet* rSet) override;
- inline void SetPrt(Printer* pPrinter) { pPrt = pPrinter; }
+ void SetPrt(Printer* pPrinter) { pPrt = pPrinter; }
};
#endif
diff --git a/sw/source/ui/envelp/labprt.hxx b/sw/source/ui/envelp/labprt.hxx
index 027edf34b75b..08d6583a7ad0 100644
--- a/sw/source/ui/envelp/labprt.hxx
+++ b/sw/source/ui/envelp/labprt.hxx
@@ -62,7 +62,7 @@ public:
void FillItem(SwLabItem& rItem);
virtual bool FillItemSet(SfxItemSet* rSet) override;
virtual void Reset(const SfxItemSet* rSet) override;
- inline Printer* GetPrt() { return pPrinter; }
+ Printer* GetPrt() { return pPrinter; }
};
#endif
diff --git a/sw/source/ui/envelp/swuilabimp.hxx b/sw/source/ui/envelp/swuilabimp.hxx
index 153524ae9445..2c720b2c8bdf 100644
--- a/sw/source/ui/envelp/swuilabimp.hxx
+++ b/sw/source/ui/envelp/swuilabimp.hxx
@@ -77,8 +77,8 @@ public:
void SetToBusinessCard();
void InitDatabaseBox();
- inline void SetDBManager(SwDBManager* pDBManager_) { pDBManager = pDBManager_; }
- inline SwDBManager* GetDBManager() const { return pDBManager; }
+ void SetDBManager(SwDBManager* pDBManager_) { pDBManager = pDBManager_; }
+ SwDBManager* GetDBManager() const { return pDBManager; }
};
class SwOneExampleFrame;