[Libreoffice-commits] core.git: connectivity/source

Jan-Marek Glogowski glogow at fbihome.de
Thu Apr 6 10:16:13 UTC 2017


 connectivity/source/drivers/kab/KCatalog.hxx           |    2 +-
 connectivity/source/drivers/kab/KResultSetMetaData.hxx |    4 ++--
 connectivity/source/drivers/kab/KServices.cxx          |    1 -
 3 files changed, 3 insertions(+), 4 deletions(-)

New commits:
commit b6637ca811b4ac1323fd0995550bde8553dfb350
Author: Jan-Marek Glogowski <glogow at fbihome.de>
Date:   Wed Apr 5 15:23:49 2017 +0200

    KAB lo:redundantinline plugin
    
    Change-Id: I522be5260b8f61afb2b133a6e32bd0b66c1b7522

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,


More information about the Libreoffice-commits mailing list