summaryrefslogtreecommitdiff
path: root/include/svtools/ServerDetailsControls.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-26 16:37:00 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-26 16:39:26 +0100
commit70cc2b191b95fbc210bc1f0f6a7159f341894f0f (patch)
treea70f4957c454b443520cbf91250c41d9eea80017 /include/svtools/ServerDetailsControls.hxx
parent8757bea2e88c6e349e1fe98d8e9695d7b9c6179e (diff)
First batch of adding SAL_OVERRRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
Diffstat (limited to 'include/svtools/ServerDetailsControls.hxx')
-rw-r--r--include/svtools/ServerDetailsControls.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/svtools/ServerDetailsControls.hxx b/include/svtools/ServerDetailsControls.hxx
index 6155b4b394b2..9bc37a41c52d 100644
--- a/include/svtools/ServerDetailsControls.hxx
+++ b/include/svtools/ServerDetailsControls.hxx
@@ -65,9 +65,9 @@ class HostDetailsContainer : public DetailsContainer
HostDetailsContainer( VclBuilderContainer* pBuilder, sal_uInt16 nPort, const OUString& sScheme );
virtual ~HostDetailsContainer( ) { };
- virtual void show( bool bShow = true );
- virtual INetURLObject getUrl( );
- virtual bool setUrl( const INetURLObject& rUrl );
+ virtual void show( bool bShow = true ) SAL_OVERRIDE;
+ virtual INetURLObject getUrl( ) SAL_OVERRIDE;
+ virtual bool setUrl( const INetURLObject& rUrl ) SAL_OVERRIDE;
protected:
void setScheme( const OUString& sScheme ) { m_sScheme = sScheme; }
@@ -87,10 +87,10 @@ class DavDetailsContainer : public HostDetailsContainer
DavDetailsContainer( VclBuilderContainer* pBuilder );
~DavDetailsContainer( ) { };
- virtual void show( bool bShow = true );
+ virtual void show( bool bShow = true ) SAL_OVERRIDE;
protected:
- virtual bool verifyScheme( const OUString& rScheme );
+ virtual bool verifyScheme( const OUString& rScheme ) SAL_OVERRIDE;
private:
DECL_LINK ( ToggledDavsHdl, CheckBox * pCheckBox );
@@ -107,8 +107,8 @@ class SmbDetailsContainer : public DetailsContainer
SmbDetailsContainer( VclBuilderContainer* pBuilder );
~SmbDetailsContainer( ) { };
- virtual INetURLObject getUrl( );
- virtual bool setUrl( const INetURLObject& rUrl );
+ virtual INetURLObject getUrl( ) SAL_OVERRIDE;
+ virtual bool setUrl( const INetURLObject& rUrl ) SAL_OVERRIDE;
};
class CmisDetailsContainer : public DetailsContainer
@@ -130,9 +130,9 @@ class CmisDetailsContainer : public DetailsContainer
CmisDetailsContainer( VclBuilderContainer* pBuilder );
~CmisDetailsContainer( ) { };
- virtual INetURLObject getUrl( );
- virtual bool setUrl( const INetURLObject& rUrl );
- virtual void setUsername( const OUString& rUsername );
+ virtual INetURLObject getUrl( ) SAL_OVERRIDE;
+ virtual bool setUrl( const INetURLObject& rUrl ) SAL_OVERRIDE;
+ virtual void setUsername( const OUString& rUsername ) SAL_OVERRIDE;
private:
void selectRepository( );