summaryrefslogtreecommitdiff
path: root/extensions/source/abpilot
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-03-03 20:57:02 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-03-03 20:55:50 +0000
commit6cb9e6dad798ec59f055aebe84a9c4a21e4be40d (patch)
tree21a7d6c0b165251ba8e0f36e73c851d41ac9dd04 /extensions/source/abpilot
parent7e8806cd728bf906e1a8f1d649bef7337f297b1c (diff)
Remove redundant 'inline' keyword
...from function definitions occurring within class definitions. Done with a rewriting Clang plugin (to be pushed later). Change-Id: I9c6f2818a57ccdb361548895a7743107cbacdff8 Reviewed-on: https://gerrit.libreoffice.org/34874 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions/source/abpilot')
-rw-r--r--extensions/source/abpilot/abspilot.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/extensions/source/abpilot/abspilot.hxx b/extensions/source/abpilot/abspilot.hxx
index 545a090cea2f..34903b91a129 100644
--- a/extensions/source/abpilot/abspilot.hxx
+++ b/extensions/source/abpilot/abspilot.hxx
@@ -87,30 +87,30 @@ namespace abp
/// guesses a default for the table name, if no valid table is selected
void implDefaultTableName();
- static inline bool needAdminInvokationPage( AddressSourceType _eType )
+ static bool needAdminInvokationPage( AddressSourceType _eType )
{
return ( AST_OTHER == _eType );
}
/// check if with the current settings, we would need to invoke he administration dialog for more details about the data source
- inline bool needAdminInvokationPage() const
+ bool needAdminInvokationPage() const
{
return needAdminInvokationPage( m_aSettings.eType );
}
- static inline bool needManualFieldMapping( AddressSourceType _eType )
+ static bool needManualFieldMapping( AddressSourceType _eType )
{
return ( AST_OTHER == _eType ) || ( AST_KAB == _eType ) ||
( AST_EVOLUTION == _eType ) || ( AST_EVOLUTION_GROUPWISE == _eType ) ||
( AST_EVOLUTION_LDAP == _eType );
}
/// checks if we need a manual (user-guided) field mapping
- inline bool needManualFieldMapping() const
+ bool needManualFieldMapping() const
{
return needManualFieldMapping( m_aSettings.eType );
}
/// determines whether the given address book type does provide one table only
- static inline bool needTableSelection( AddressSourceType _eType )
+ static bool needTableSelection( AddressSourceType _eType )
{
return ( AST_KAB != _eType );
}