summaryrefslogtreecommitdiff
path: root/extensions/source/abpilot
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-15 13:17:16 +0200
committerNoel Grandin <noel@peralex.com>2015-04-23 13:08:48 +0200
commit0a7b739cc33a56339a2bf0f8f0253f9402cabd35 (patch)
tree893c99038c2474391bd474e356ac5edad813ba22 /extensions/source/abpilot
parenta57a1494a35e188845b6df3361680d4ed3149427 (diff)
loplugin:staticmethods
Change-Id: I2ee91d07cf9d46cdc385a4db8473550b05e2f0ad
Diffstat (limited to 'extensions/source/abpilot')
-rw-r--r--extensions/source/abpilot/abspilot.hxx6
1 files changed, 3 insertions, 3 deletions
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 );
}