diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-02-20 14:01:08 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-02-21 09:14:14 +0100 |
commit | 6333dcf6f18c5d5a03e5daa267f89c06a528b698 (patch) | |
tree | e5d5246bd595e0a647b6cac436aba5d4f4351259 /connectivity/source/drivers/macab/MacabResultSet.cxx | |
parent | 07f24df0e8dbc035f2f9a24c12879848a1f318f1 (diff) |
loplugin:indentation (macOS)
* Some .m/.mm files that still contained tabs instead of spaces have been
cleaned up with Emacs' untabify (and
apple_remote/source/HIDRemoteControlDevice.m needed further manual adaptions):
apple_remote/source/GlobalKeyboardDevice.m
apple_remote/source/HIDRemoteControlDevice.m
apple_remote/source/KeyspanFrontRowControl.m
apple_remote/source/RemoteControl.m
vcl/osx/a11yrolehelper.mm
* Some of the changes predate 0626e66d761de18f62e4d00d427903032da9d517 "Avoid
loplugin:indentation after preproc conditional inclusion lines" and would
likely have no longer been flagged since.
Change-Id: Ibf5faffa743c7f79b36109d9879eb79d63c8c40f
Reviewed-on: https://gerrit.libreoffice.org/68090
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'connectivity/source/drivers/macab/MacabResultSet.cxx')
-rw-r--r-- | connectivity/source/drivers/macab/MacabResultSet.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/connectivity/source/drivers/macab/MacabResultSet.cxx b/connectivity/source/drivers/macab/MacabResultSet.cxx index fd129a1b798a..149a3123208d 100644 --- a/connectivity/source/drivers/macab/MacabResultSet.cxx +++ b/connectivity/source/drivers/macab/MacabResultSet.cxx @@ -144,8 +144,8 @@ void MacabResultSet::disposing() ::osl::MutexGuard aGuard(m_aMutex); -m_xStatement.clear(); -m_xMetaData.clear(); + m_xStatement.clear(); + m_xMetaData.clear(); } Any SAL_CALL MacabResultSet::queryInterface(const Type & rType) @@ -235,7 +235,7 @@ sal_Bool SAL_CALL MacabResultSet::getBoolean(sal_Int32) ::osl::MutexGuard aGuard( m_aMutex ); checkDisposed(MacabResultSet_BASE::rBHelper.bDisposed); -::dbtools::throwFunctionNotSupportedSQLException("getBoolean", nullptr); + ::dbtools::throwFunctionNotSupportedSQLException("getBoolean", nullptr); return false; } @@ -245,7 +245,7 @@ sal_Int8 SAL_CALL MacabResultSet::getByte(sal_Int32) ::osl::MutexGuard aGuard( m_aMutex ); checkDisposed(MacabResultSet_BASE::rBHelper.bDisposed); -::dbtools::throwFunctionNotSupportedSQLException("getByte", nullptr); + ::dbtools::throwFunctionNotSupportedSQLException("getByte", nullptr); return 0; } @@ -255,7 +255,7 @@ sal_Int16 SAL_CALL MacabResultSet::getShort(sal_Int32) ::osl::MutexGuard aGuard( m_aMutex ); checkDisposed(MacabResultSet_BASE::rBHelper.bDisposed); -::dbtools::throwFunctionNotSupportedSQLException("getShort", nullptr); + ::dbtools::throwFunctionNotSupportedSQLException("getShort", nullptr); return 0; } @@ -490,7 +490,7 @@ Reference< XClob > SAL_CALL MacabResultSet::getClob(sal_Int32) ::osl::MutexGuard aGuard( m_aMutex ); checkDisposed(MacabResultSet_BASE::rBHelper.bDisposed); -::dbtools::throwFunctionNotSupportedSQLException("getClob", nullptr); + ::dbtools::throwFunctionNotSupportedSQLException("getClob", nullptr); return nullptr; } @@ -500,7 +500,7 @@ Reference< XArray > SAL_CALL MacabResultSet::getArray(sal_Int32) ::osl::MutexGuard aGuard( m_aMutex ); checkDisposed(MacabResultSet_BASE::rBHelper.bDisposed); -::dbtools::throwFunctionNotSupportedSQLException("getArray", nullptr); + ::dbtools::throwFunctionNotSupportedSQLException("getArray", nullptr); return nullptr; } @@ -897,7 +897,7 @@ sal_Bool SAL_CALL MacabResultSet::moveToBookmark(const Any& bookmark) checkDisposed(MacabResultSet_BASE::rBHelper.bDisposed); OUString sBookmark = comphelper::getString(bookmark); - sal_Int32 nRecords = m_aMacabRecords->size(); + sal_Int32 nRecords = m_aMacabRecords->size(); for (sal_Int32 nRow = 0; nRow < nRecords; nRow++) { |