diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 09:31:15 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 09:33:33 +0100 |
commit | 02b24d77476f93887691dde564351d6f8b770b8f (patch) | |
tree | ba741033cd4b00996b370d23443bede3a41a7f88 /framework/inc | |
parent | fd8f926b0e409d49d235409daaf8f7aa8532cc40 (diff) |
sal_Char->char in forms..framework
Change-Id: I756c1f54d50403aa9b4f03dbbc2a387556f07084
Reviewed-on: https://gerrit.libreoffice.org/85475
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework/inc')
-rw-r--r-- | framework/inc/jobs/joburl.hxx | 2 | ||||
-rw-r--r-- | framework/inc/macros/registration.hxx | 2 | ||||
-rw-r--r-- | framework/inc/uielement/uicommanddescription.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/framework/inc/jobs/joburl.hxx b/framework/inc/jobs/joburl.hxx index 5ea812d52ff1..32c2fc809aa5 100644 --- a/framework/inc/jobs/joburl.hxx +++ b/framework/inc/jobs/joburl.hxx @@ -98,7 +98,7 @@ class JobURL private: static bool implst_split( const OUString& sPart , - const sal_Char* pPartIdentifier , + const char* pPartIdentifier , sal_Int32 nPartLength , OUString& rPartValue , OUString& rPartArguments ); diff --git a/framework/inc/macros/registration.hxx b/framework/inc/macros/registration.hxx index 55581ed3f9f6..878bc89c44bb 100644 --- a/framework/inc/macros/registration.hxx +++ b/framework/inc/macros/registration.hxx @@ -51,7 +51,7 @@ ________________________________________________________________________________ // define method to instantiate new services #define COMPONENTGETFACTORY( LIB, IFFACTORIES ) \ - extern "C" SAL_DLLPUBLIC_EXPORT void* LIB##_component_getFactory( const sal_Char* pImplementationName, \ + extern "C" SAL_DLLPUBLIC_EXPORT void* LIB##_component_getFactory( const char* pImplementationName, \ void* pServiceManager , \ void* /*pRegistryKey*/ ) \ { \ diff --git a/framework/inc/uielement/uicommanddescription.hxx b/framework/inc/uielement/uicommanddescription.hxx index d2eb672cd71d..652a8966805c 100644 --- a/framework/inc/uielement/uicommanddescription.hxx +++ b/framework/inc/uielement/uicommanddescription.hxx @@ -80,7 +80,7 @@ public: protected: UICommandDescription( const css::uno::Reference< css::uno::XComponentContext>& rxContext, bool ); - void impl_fillElements(const sal_Char* _pName); + void impl_fillElements(const char* _pName); OUString m_aPrivateResourceURL; css::uno::Reference< css::uno::XComponentContext > m_xContext; |