diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-03-07 08:12:52 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-03-07 08:12:52 +0100 |
commit | f6262b3dcb4126ea03802e66ddf5bfa8833e6328 (patch) | |
tree | 947d25a477987d1dbb3b0f43a519ae6808184e1a /connectivity | |
parent | 76db789dc777a4888b95d9f6665ce45bd667b957 (diff) |
Remove redundant 'inline' keyword, Linux redux
Change-Id: I10c7dbd6a7acce309b056a1ae57c39f00f22c46d
Diffstat (limited to 'connectivity')
5 files changed, 8 insertions, 9 deletions
diff --git a/connectivity/source/drivers/evoab2/NCatalog.hxx b/connectivity/source/drivers/evoab2/NCatalog.hxx index 617a0cfe64f3..1ed64f510440 100644 --- a/connectivity/source/drivers/evoab2/NCatalog.hxx +++ b/connectivity/source/drivers/evoab2/NCatalog.hxx @@ -32,7 +32,7 @@ namespace connectivity OEvoabConnection *m_pConnection; public: explicit OEvoabCatalog(OEvoabConnection *_pCon); - inline OEvoabConnection* getConnection() const { return m_pConnection; } + OEvoabConnection* getConnection() const { return m_pConnection; } virtual void refreshTables() override; virtual void refreshViews() override {} virtual void refreshGroups() override {} diff --git a/connectivity/source/drivers/evoab2/NConnection.hxx b/connectivity/source/drivers/evoab2/NConnection.hxx index 903d7255885a..43169062f431 100644 --- a/connectivity/source/drivers/evoab2/NConnection.hxx +++ b/connectivity/source/drivers/evoab2/NConnection.hxx @@ -68,10 +68,10 @@ namespace connectivity /// @throws css::sdbc::SQLException virtual void construct(const OUString& _rUrl,const css::uno::Sequence< css::beans::PropertyValue >& _rInfo ); - inline OString const & getPassword() { return m_aPassword; } - inline void setPassword( OString const & aStr ) { m_aPassword = aStr; } + OString const & getPassword() { return m_aPassword; } + void setPassword( OString const & aStr ) { m_aPassword = aStr; } // own methods - inline const OEvoabDriver& getDriver() const { return m_rDriver; } + const OEvoabDriver& getDriver() const { return m_rDriver; } SDBCAddress::sdbc_address_type getSDBCAddressType() const { return m_eSDBCAddressType;} void setSDBCAddressType(SDBCAddress::sdbc_address_type _eSDBCAddressType) {m_eSDBCAddressType = _eSDBCAddressType;} diff --git a/connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx b/connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx index 39a9b2adaa54..fdefba79eb8b 100644 --- a/connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx +++ b/connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx @@ -85,7 +85,7 @@ namespace connectivity virtual ~OEvoabDatabaseMetaData() override; public: - inline OEvoabConnection* getOwnConnection() const { return m_pConnection; } + OEvoabConnection* getOwnConnection() const { return m_pConnection; } explicit OEvoabDatabaseMetaData(OEvoabConnection* _pCon); diff --git a/connectivity/source/drivers/evoab2/NResultSetMetaData.hxx b/connectivity/source/drivers/evoab2/NResultSetMetaData.hxx index b2722e0076ee..9f5d52c77d73 100644 --- a/connectivity/source/drivers/evoab2/NResultSetMetaData.hxx +++ b/connectivity/source/drivers/evoab2/NResultSetMetaData.hxx @@ -45,12 +45,12 @@ namespace connectivity explicit OEvoabResultSetMetaData(const OUString& _aTableName); /// @throws css::sdbc::SQLException void setEvoabFields(const ::rtl::Reference<connectivity::OSQLColumns> &xColumns); - inline sal_uInt32 fieldAtColumn(sal_Int32 columnIndex) const + sal_uInt32 fieldAtColumn(sal_Int32 columnIndex) const { return m_aEvoabFields[columnIndex - 1]; } - inline sal_Int32 getFieldSize() const + sal_Int32 getFieldSize() const {return m_aEvoabFields.size();} /// Avoid ambigous cast error from the compiler. - inline operator css::uno::Reference< css::sdbc::XResultSetMetaData > () throw() + operator css::uno::Reference< css::sdbc::XResultSetMetaData > () throw() { return this; } virtual sal_Int32 SAL_CALL getColumnCount( ) override; diff --git a/connectivity/source/drivers/evoab2/NServices.cxx b/connectivity/source/drivers/evoab2/NServices.cxx index eacc2d63a2d0..8599b69e9b8d 100644 --- a/connectivity/source/drivers/evoab2/NServices.cxx +++ b/connectivity/source/drivers/evoab2/NServices.cxx @@ -52,7 +52,6 @@ struct ProviderRequest { } - inline bool CREATE_PROVIDER( const OUString& Implname, const Sequence< OUString > & Services, |