diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-07 13:16:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-09 10:13:18 +0200 |
commit | 35163715ead39eece619a5790903c88fa4216ec6 (patch) | |
tree | 68f657e8f4137d234d1b6b32835e3ff540b4b01a /package | |
parent | e68c699b7e7efdf3678b450124b9e08ee227ddb9 (diff) |
loplugin:staticmethods
Change-Id: Ie348778ea666c24e95e048386547f301083a0017
Diffstat (limited to 'package')
-rw-r--r-- | package/inc/ZipPackage.hxx | 2 | ||||
-rw-r--r-- | package/inc/zipfileaccess.hxx | 4 | ||||
-rw-r--r-- | package/source/manifest/ManifestImport.hxx | 2 | ||||
-rw-r--r-- | package/source/xstor/xstorage.hxx | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/package/inc/ZipPackage.hxx b/package/inc/ZipPackage.hxx index 1ac84f1ea5ea..3e03b1396b39 100644 --- a/package/inc/ZipPackage.hxx +++ b/package/inc/ZipPackage.hxx @@ -161,7 +161,7 @@ public: // XUnoTunnel virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; - com::sun::star::uno::Sequence < sal_Int8 > getUnoTunnelImplementationId( void ) + static com::sun::star::uno::Sequence < sal_Int8 > getUnoTunnelImplementationId() throw(::com::sun::star::uno::RuntimeException); // XPropertySet virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) diff --git a/package/inc/zipfileaccess.hxx b/package/inc/zipfileaccess.hxx index 33d3f3346fca..553d4cbe41a1 100644 --- a/package/inc/zipfileaccess.hxx +++ b/package/inc/zipfileaccess.hxx @@ -59,9 +59,9 @@ public: virtual ~OZipFileAccess(); - ::com::sun::star::uno::Sequence< OUString > GetPatternsFromString_Impl( const OUString& aString ); + static ::com::sun::star::uno::Sequence< OUString > GetPatternsFromString_Impl( const OUString& aString ); - bool StringGoodForPattern_Impl( const OUString& aString, + static bool StringGoodForPattern_Impl( const OUString& aString, const ::com::sun::star::uno::Sequence< OUString >& aPattern ); static ::com::sun::star::uno::Sequence< OUString > SAL_CALL impl_staticGetSupportedServiceNames(); diff --git a/package/source/manifest/ManifestImport.hxx b/package/source/manifest/ManifestImport.hxx index dd7498bb68b1..23151358bc56 100644 --- a/package/source/manifest/ManifestImport.hxx +++ b/package/source/manifest/ManifestImport.hxx @@ -117,7 +117,7 @@ protected: OUString PushNameAndNamespaces( const OUString& aName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttribs, StringHashMap& o_aConvertedAttribs ); - OUString ConvertNameWithNamespace( const OUString& aName, const StringHashMap& aNamespaces ); + static OUString ConvertNameWithNamespace( const OUString& aName, const StringHashMap& aNamespaces ); OUString ConvertName( const OUString& aName ); public: diff --git a/package/source/xstor/xstorage.hxx b/package/source/xstor/xstorage.hxx index c8688ecf9faf..4e1283affce8 100644 --- a/package/source/xstor/xstorage.hxx +++ b/package/source/xstor/xstorage.hxx @@ -249,7 +249,7 @@ struct OStorage_Impl ::com::sun::star::uno::Sequence< OUString > GetElementNames(); void RemoveElement( SotElement_Impl* pElement ); - void ClearElement( SotElement_Impl* pElement ); + static void ClearElement( SotElement_Impl* pElement ); void DisposeChildren(); void CloneStreamElement( |