summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-27 20:58:06 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-27 20:58:06 +0100
commita7a9e81c772c86dbc8a2a62694a3f7dc23789df3 (patch)
tree799f59581500c3d80a81a5494628b1da89d1541f /dbaccess
parentba59a951e595bd44754c4e60603b27334bbf9897 (diff)
Work around MSC "'override' cannot be used with 'inline'" bug
Change-Id: I5d2fcf6ba90892abf55cbf61b760c2fbbe33c412
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/app/AppSwapWindow.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/dbaccess/source/ui/app/AppSwapWindow.hxx b/dbaccess/source/ui/app/AppSwapWindow.hxx
index dc6a7ec71416..bc24248e09a5 100644
--- a/dbaccess/source/ui/app/AppSwapWindow.hxx
+++ b/dbaccess/source/ui/app/AppSwapWindow.hxx
@@ -46,13 +46,13 @@ namespace dbaui
// window overloads
virtual void Resize() SAL_OVERRIDE;
- inline sal_Bool isCutAllowed() SAL_OVERRIDE { return sal_False; }
- inline sal_Bool isCopyAllowed() SAL_OVERRIDE { return sal_False; }
- inline sal_Bool isPasteAllowed() SAL_OVERRIDE { return sal_False; }
+ sal_Bool isCutAllowed() SAL_OVERRIDE { return sal_False; }
+ sal_Bool isCopyAllowed() SAL_OVERRIDE { return sal_False; }
+ sal_Bool isPasteAllowed() SAL_OVERRIDE { return sal_False; }
virtual sal_Bool hasChildPathFocus() SAL_OVERRIDE { return HasChildPathFocus(); }
- inline void copy() SAL_OVERRIDE { }
- inline void cut() SAL_OVERRIDE { }
- inline void paste() SAL_OVERRIDE { }
+ void copy() SAL_OVERRIDE { }
+ void cut() SAL_OVERRIDE { }
+ void paste() SAL_OVERRIDE { }
inline sal_uLong GetEntryCount() const { return m_aIconControl.GetEntryCount(); }
inline SvxIconChoiceCtrlEntry* GetEntry( sal_uLong nPos ) const { return m_aIconControl.GetEntry(nPos); }