diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-06 08:59:44 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-07 11:25:55 +0100 |
commit | dd0dceb51122b4e8e969f848d9f046e91962d254 (patch) | |
tree | f927f0870a54ad7cb887e6e7d5bb7956d44d0665 /pyuno | |
parent | caf1eb15838729e05a70d2fcb8de6834394b5764 (diff) |
loplugin:salcall handle static methods
Change-Id: Id6820abec4b8ca8bee26d62b333fd30b42a14aec
Reviewed-on: https://gerrit.libreoffice.org/46007
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/inc/pyuno.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyuno/inc/pyuno.hxx b/pyuno/inc/pyuno.hxx index f09cbd051089..85c8ef9cdaff 100644 --- a/pyuno/inc/pyuno.hxx +++ b/pyuno/inc/pyuno.hxx @@ -210,14 +210,14 @@ public: @throw RuntimeException in case the thread is not attached or the runtime has not been initialized. */ - static void SAL_CALL initialize( + static void initialize( const css::uno::Reference< css::uno::XComponentContext > & ctx ); /** Checks, whether the uno runtime is already initialized in the current python interpreter. @throws css::uno::RuntimeException */ - static bool SAL_CALL isInitialized(); + static bool isInitialized(); /** converts something contained in an UNO Any to a Python object |