summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-24 10:36:27 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-24 17:28:50 +0100
commit56063d30628ee2497a7c559d7de42d26e9cfc8ae (patch)
tree2a48a93cfee5c6d1e7e942361b5d040ac04ce663 /unodevtools
parent122598af564082786f01b4eafdb9f09f0cffdf5f (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 'unodevtools')
-rw-r--r--unodevtools/inc/options.hxx4
-rw-r--r--unodevtools/source/unodevtools/options.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/unodevtools/inc/options.hxx b/unodevtools/inc/options.hxx
index f459009e190b..882d5c6488bf 100644
--- a/unodevtools/inc/options.hxx
+++ b/unodevtools/inc/options.hxx
@@ -27,12 +27,12 @@
namespace unodevtools {
-bool readOption( OUString * pValue, const sal_Char * pOpt,
+bool readOption( OUString * pValue, const char * pOpt,
sal_uInt32 * pnIndex, const OUString & aArg);
// throws CannotDumpException
-bool readOption( const sal_Char * pOpt,
+bool readOption( const char * pOpt,
sal_uInt32 * pnIndex, const OUString & aArg);
} // end of namespace unodevtools
diff --git a/unodevtools/source/unodevtools/options.cxx b/unodevtools/source/unodevtools/options.cxx
index 664cdceca99d..43948067359e 100644
--- a/unodevtools/source/unodevtools/options.cxx
+++ b/unodevtools/source/unodevtools/options.cxx
@@ -28,7 +28,7 @@
namespace unodevtools {
-bool readOption( OUString * pValue, const sal_Char * pOpt,
+bool readOption( OUString * pValue, const char * pOpt,
sal_uInt32 * pnIndex, const OUString & aArg)
{
const OUString dash = "-";
@@ -65,7 +65,7 @@ bool readOption( OUString * pValue, const sal_Char * pOpt,
}
-bool readOption( const sal_Char * pOpt,
+bool readOption( const char * pOpt,
sal_uInt32 * pnIndex, const OUString & aArg)
{
OUString aOpt = OUString::createFromAscii(pOpt);