From a7a9e81c772c86dbc8a2a62694a3f7dc23789df3 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 27 Mar 2014 20:58:06 +0100 Subject: Work around MSC "'override' cannot be used with 'inline'" bug Change-Id: I5d2fcf6ba90892abf55cbf61b760c2fbbe33c412 --- dbaccess/source/ui/app/AppSwapWindow.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'dbaccess') 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); } -- cgit