summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/filstr.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-04 14:20:26 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-05 07:32:46 +0100
commit9a06b99d2f53bd8d0a9ab0936efed9924a2abb88 (patch)
tree544f3e51a3978bd234a1c9fcdbf12d9b84352da4 /ucb/source/ucp/file/filstr.hxx
parenteaf89e477af94bd3977aca17d72dd442c7604e63 (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/ucp/file/filstr.hxx')
-rw-r--r--ucb/source/ucp/file/filstr.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/file/filstr.hxx b/ucb/source/ucp/file/filstr.hxx
index f04968f14214..adad07239928 100644
--- a/ucb/source/ucp/file/filstr.hxx
+++ b/ucb/source/ucp/file/filstr.hxx
@@ -55,8 +55,8 @@ class XStream_impl : public cppu::WeakImplHelper<
* Returns an error code as given by filerror.hxx
*/
- sal_Int32 SAL_CALL CtorSuccess() { return m_nErrorCode;}
- sal_Int32 SAL_CALL getMinorError() { return m_nMinorErrorCode;}
+ sal_Int32 CtorSuccess() { return m_nErrorCode;}
+ sal_Int32 getMinorError() { return m_nMinorErrorCode;}
virtual ~XStream_impl() override;
@@ -139,7 +139,7 @@ class XStream_impl : public cppu::WeakImplHelper<
/// @throws css::io::NotConnectedException
/// @throws css::io::IOException
/// @throws css::uno::RuntimeException
- void SAL_CALL
+ void
closeStream();
};