diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-04 14:20:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-05 07:32:46 +0100 |
commit | 9a06b99d2f53bd8d0a9ab0936efed9924a2abb88 (patch) | |
tree | 544f3e51a3978bd234a1c9fcdbf12d9b84352da4 /ucb/source/cacher/cachedcontentresultset.hxx | |
parent | eaf89e477af94bd3977aca17d72dd442c7604e63 (diff) |
loplugin:salcall fix non-virtual methods
first, since those are safer to change than virtual methods
Change-Id: Ie3b624019d75ee2b793cee33b3c5f64e994e8bfe
Reviewed-on: https://gerrit.libreoffice.org/45798
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb/source/cacher/cachedcontentresultset.hxx')
-rw-r--r-- | ucb/source/cacher/cachedcontentresultset.hxx | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/ucb/source/cacher/cachedcontentresultset.hxx b/ucb/source/cacher/cachedcontentresultset.hxx index 973b18d0aa24..0299f67c51bb 100644 --- a/ucb/source/cacher/cachedcontentresultset.hxx +++ b/ucb/source/cacher/cachedcontentresultset.hxx @@ -61,52 +61,52 @@ class CachedContentResultSet private: /// @throws css::sdbc::SQLException /// @throws css::uno::RuntimeException - css::uno::Any& SAL_CALL + css::uno::Any& getRowAny( sal_Int32 nRow ); - void SAL_CALL clear(); + void clear(); - void SAL_CALL remindMapped( sal_Int32 nRow ); - bool SAL_CALL isRowMapped( sal_Int32 nRow ); - void SAL_CALL clearMappedReminder(); - css::uno::Sequence< sal_Bool >* SAL_CALL getMappedReminder(); + void remindMapped( sal_Int32 nRow ); + bool isRowMapped( sal_Int32 nRow ); + void clearMappedReminder(); + css::uno::Sequence< sal_Bool >* getMappedReminder(); public: CCRS_Cache( const css::uno::Reference< css::ucb::XContentIdentifierMapping > & xMapping ); ~CCRS_Cache(); - void SAL_CALL loadData( + void loadData( const css::ucb::FetchResult& rResult ); - bool SAL_CALL + bool hasRow( sal_Int32 nRow ); - bool SAL_CALL + bool hasCausedException( sal_Int32 nRow ); - sal_Int32 SAL_CALL + sal_Int32 getMaxRow(); - bool SAL_CALL + bool hasKnownLast(); /// @throws css::sdbc::SQLException /// @throws css::uno::RuntimeException - const css::uno::Any& SAL_CALL + const css::uno::Any& getAny( sal_Int32 nRow, sal_Int32 nColumnIndex ); /// @throws css::uno::RuntimeException - OUString SAL_CALL + OUString getContentIdentifierString( sal_Int32 nRow ); /// @throws css::uno::RuntimeException - css::uno::Reference< css::ucb::XContentIdentifier > SAL_CALL + css::uno::Reference< css::ucb::XContentIdentifier > getContentIdentifier( sal_Int32 nRow ); /// @throws css::uno::RuntimeException - css::uno::Reference< css::ucb::XContent > SAL_CALL + css::uno::Reference< css::ucb::XContent > getContent( sal_Int32 nRow ); }; @@ -159,24 +159,24 @@ private: /// @throws css::sdbc::SQLException /// @throws css::uno::RuntimeException - bool SAL_CALL + bool applyPositionToOrigin( sal_Int32 nRow ); /// @throws css::uno::RuntimeException - void SAL_CALL + void impl_fetchData( sal_Int32 nRow, sal_Int32 nCount , sal_Int32 nFetchDirection ); - bool SAL_CALL + bool impl_isKnownValidPosition( sal_Int32 nRow ); - bool SAL_CALL + bool impl_isKnownInvalidPosition( sal_Int32 nRow ); - void SAL_CALL + void impl_changeRowCount( sal_Int32 nOld, sal_Int32 nNew ); - void SAL_CALL + void impl_changeIsRowCountFinal( bool bOld, bool bNew ); public: |