diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-24 10:36:27 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-24 17:28:50 +0100 |
commit | 56063d30628ee2497a7c559d7de42d26e9cfc8ae (patch) | |
tree | 2a48a93cfee5c6d1e7e942361b5d040ac04ce663 /include | |
parent | 122598af564082786f01b4eafdb9f09f0cffdf5f (diff) |
sal_Char->char in unoxml
Change-Id: Ie14ea8349e5dc698a11b3447429b3ca7cbab9bb3
Reviewed-on: https://gerrit.libreoffice.org/85774
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/unotools/confignode.hxx | 6 | ||||
-rw-r--r-- | include/unotools/configvaluecontainer.hxx | 4 | ||||
-rw-r--r-- | include/unotools/resmgr.hxx | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/include/unotools/confignode.hxx b/include/unotools/confignode.hxx index 156c5a05381b..9e3d57ee8b9a 100644 --- a/include/unotools/confignode.hxx +++ b/include/unotools/confignode.hxx @@ -81,7 +81,7 @@ namespace utl */ OConfigurationNode openNode(const OUString& _rPath) const throw(); - OConfigurationNode openNode( const sal_Char* _pAsciiPath ) const + OConfigurationNode openNode( const char* _pAsciiPath ) const { return openNode( OUString::createFromAscii( _pAsciiPath ) ); } @@ -112,7 +112,7 @@ namespace utl */ css::uno::Any getNodeValue(const OUString& _rPath) const throw(); - css::uno::Any getNodeValue( const sal_Char* _pAsciiPath ) const + css::uno::Any getNodeValue( const char* _pAsciiPath ) const { return getNodeValue( OUString::createFromAscii( _pAsciiPath ) ); } @@ -125,7 +125,7 @@ namespace utl */ bool setNodeValue(const OUString& _rPath, const css::uno::Any& _rValue) const throw(); - bool setNodeValue( const sal_Char* _pAsciiPath, const css::uno::Any& _rValue ) const + bool setNodeValue( const char* _pAsciiPath, const css::uno::Any& _rValue ) const { return setNodeValue( OUString::createFromAscii( _pAsciiPath ), _rValue ); } diff --git a/include/unotools/configvaluecontainer.hxx b/include/unotools/configvaluecontainer.hxx index 5d51b1e7dcaa..4190f76b5829 100644 --- a/include/unotools/configvaluecontainer.hxx +++ b/include/unotools/configvaluecontainer.hxx @@ -82,7 +82,7 @@ namespace utl OConfigurationValueContainer( const css::uno::Reference< css::uno::XComponentContext >& _rxORB, ::osl::Mutex& _rAccessSafety, - const sal_Char* _pConfigLocation, + const char* _pConfigLocation, const sal_Int32 _nLevels ); @@ -104,7 +104,7 @@ namespace utl is the type of your accessor. This type must be supported by the configuration. */ void registerExchangeLocation( - const sal_Char* _pRelativePathAscii, + const char* _pRelativePathAscii, void* _pContainer, const css::uno::Type& _rValueType ); diff --git a/include/unotools/resmgr.hxx b/include/unotools/resmgr.hxx index 400f3a74f389..d1c64e399ffe 100644 --- a/include/unotools/resmgr.hxx +++ b/include/unotools/resmgr.hxx @@ -29,7 +29,7 @@ typedef OUString (*ResHookProc)(const OUString& rStr); namespace Translate { - UNOTOOLS_DLLPUBLIC std::locale Create(const sal_Char* pPrefixName, const LanguageTag& rLocale = SvtSysLocale().GetUILanguageTag()); + UNOTOOLS_DLLPUBLIC std::locale Create(const char* pPrefixName, const LanguageTag& rLocale = SvtSysLocale().GetUILanguageTag()); UNOTOOLS_DLLPUBLIC OUString get(const char* pId, const std::locale &loc); UNOTOOLS_DLLPUBLIC OUString nget(const char* pId, int n, const std::locale &loc); UNOTOOLS_DLLPUBLIC void SetReadStringHook( ResHookProc pProc ); |