summaryrefslogtreecommitdiffstats
path: root/sw/source/ui
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui')
-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
-rw-r--r--sw/source/ui/fldui/fldpage.hxx4
4 files changed, 6 insertions, 6 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;
diff --git a/sw/source/ui/fldui/fldpage.hxx b/sw/source/ui/fldui/fldpage.hxx
index a7e665b428b1..548cd5d6b091 100644
--- a/sw/source/ui/fldui/fldpage.hxx
+++ b/sw/source/ui/fldui/fldpage.hxx
@@ -63,7 +63,7 @@ protected:
void SavePos( const ListBox* pLst1);
void RestorePos( ListBox* pLst1 );
void EnableInsert(bool bEnable);
- inline bool IsFieldEdit() const { return m_bFieldEdit; }
+ bool IsFieldEdit() const { return m_bFieldEdit; }
// insert field
void InsertField( sal_uInt16 nTypeId,
@@ -84,7 +84,7 @@ public:
virtual void ActivatePage() override;
- inline SwFieldMgr& GetFieldMgr() { return m_aMgr; }
+ SwFieldMgr& GetFieldMgr() { return m_aMgr; }
void SetWrtShell( SwWrtShell* m_pWrtShell );
void EditNewField( bool bOnlyActivate = false );
virtual sal_uInt16 GetGroup() = 0;