diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-04-05 15:23:49 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-04-06 11:52:17 +0200 |
commit | b6637ca811b4ac1323fd0995550bde8553dfb350 (patch) | |
tree | d34ae3c5b853af1ac0a289e2758aadf61c8d3a97 /connectivity | |
parent | aa09b0c27a6d925da428d6267daadc7338829869 (diff) |
KAB lo:redundantinline plugin
Change-Id: I522be5260b8f61afb2b133a6e32bd0b66c1b7522
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/kab/KCatalog.hxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/kab/KResultSetMetaData.hxx | 4 | ||||
-rw-r--r-- | connectivity/source/drivers/kab/KServices.cxx | 1 |
3 files changed, 3 insertions, 4 deletions
diff --git a/connectivity/source/drivers/kab/KCatalog.hxx b/connectivity/source/drivers/kab/KCatalog.hxx index 29b2580fc1b3..d369e916e0ed 100644 --- a/connectivity/source/drivers/kab/KCatalog.hxx +++ b/connectivity/source/drivers/kab/KCatalog.hxx @@ -35,7 +35,7 @@ namespace connectivity public: explicit KabCatalog(KabConnection* _pCon); - inline KabConnection* getConnection() const { return m_pConnection; } + KabConnection* getConnection() const { return m_pConnection; } // implementation of the pure virtual methods virtual void refreshTables() override; diff --git a/connectivity/source/drivers/kab/KResultSetMetaData.hxx b/connectivity/source/drivers/kab/KResultSetMetaData.hxx index 492089af1ea0..5da22c1c6e0a 100644 --- a/connectivity/source/drivers/kab/KResultSetMetaData.hxx +++ b/connectivity/source/drivers/kab/KResultSetMetaData.hxx @@ -46,12 +46,12 @@ namespace connectivity KabResultSetMetaData(); // avoid ambiguous cast error from the compiler - inline operator css::uno::Reference< css::sdbc::XResultSetMetaData > () throw() + operator css::uno::Reference< css::sdbc::XResultSetMetaData > () throw() { return this; } void setKabFields( const ::rtl::Reference<connectivity::OSQLColumns> &xColumns); - inline sal_uInt32 fieldAtColumn(sal_Int32 columnIndex) const + sal_uInt32 fieldAtColumn(sal_Int32 columnIndex) const { return m_aKabFields[columnIndex - 1]; } virtual sal_Int32 SAL_CALL getColumnCount( ) override; diff --git a/connectivity/source/drivers/kab/KServices.cxx b/connectivity/source/drivers/kab/KServices.cxx index 6c2c9fe9723b..573643ed9eae 100644 --- a/connectivity/source/drivers/kab/KServices.cxx +++ b/connectivity/source/drivers/kab/KServices.cxx @@ -59,7 +59,6 @@ struct ProviderRequest { } - inline bool CREATE_PROVIDER( const OUString& Implname, const Sequence< OUString > & Services, |