From 0a7b739cc33a56339a2bf0f8f0253f9402cabd35 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 15 Apr 2015 13:17:16 +0200 Subject: loplugin:staticmethods Change-Id: I2ee91d07cf9d46cdc385a4db8473550b05e2f0ad --- extensions/source/abpilot/abspilot.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'extensions/source/abpilot') diff --git a/extensions/source/abpilot/abspilot.hxx b/extensions/source/abpilot/abspilot.hxx index cd4e818f41c5..de7a5895b627 100644 --- a/extensions/source/abpilot/abspilot.hxx +++ b/extensions/source/abpilot/abspilot.hxx @@ -93,7 +93,7 @@ namespace abp /// guesses a default for the table name, if no valid table is selected void implDefaultTableName(); - inline bool needAdminInvokationPage( AddressSourceType _eType ) const + static inline bool needAdminInvokationPage( AddressSourceType _eType ) { return ( ( AST_LDAP == _eType ) || ( AST_OTHER == _eType ) @@ -105,7 +105,7 @@ namespace abp return needAdminInvokationPage( m_aSettings.eType ); } - inline bool needManualFieldMapping( AddressSourceType _eType ) const + static inline bool needManualFieldMapping( AddressSourceType _eType ) { return ( AST_OTHER == _eType ) || ( AST_KAB == _eType ) || ( AST_EVOLUTION == _eType ) || ( AST_EVOLUTION_GROUPWISE == _eType ) || @@ -118,7 +118,7 @@ namespace abp } /// determines whether the given address book type does provide one table only - inline bool needTableSelection( AddressSourceType _eType ) const + static inline bool needTableSelection( AddressSourceType _eType ) { return ( AST_LDAP != _eType ) && ( AST_KAB != _eType ); } -- cgit