diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-18 14:23:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-18 17:40:23 +0100 |
commit | 685c9642c190c8d2585f46c058e950d279e0aa8f (patch) | |
tree | ede574ce54d62fcda3ae12a81c9dd3b7c64e7172 /cpputools | |
parent | 9e5cbcf90f15f46f84900a58bcaee437b98587f6 (diff) |
sal_Char->char in cppcanvas..cui
Change-Id: I7e9fa7011f1e0bf143f86055718c772caebf8ee6
Reviewed-on: https://gerrit.libreoffice.org/85397
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cpputools')
-rw-r--r-- | cpputools/source/unoexe/unoexe.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpputools/source/unoexe/unoexe.cxx b/cpputools/source/unoexe/unoexe.cxx index 98f437482d94..70a05803902a 100644 --- a/cpputools/source/unoexe/unoexe.cxx +++ b/cpputools/source/unoexe/unoexe.cxx @@ -62,7 +62,7 @@ namespace unoexe static bool s_quiet = false; -static void out( const sal_Char * pText ) +static void out( const char * pText ) { if (! s_quiet) fprintf( stderr, "%s", pText ); @@ -86,7 +86,7 @@ static const char arUsingText[] = " [-- Argument1 Argument2 ...]\n"; /// @throws RuntimeException -static bool readOption( OUString * pValue, const sal_Char * pOpt, +static bool readOption( OUString * pValue, const char * pOpt, sal_uInt32 * pnIndex, const OUString & aArg) { const OUString dash("-"); @@ -123,7 +123,7 @@ static bool readOption( OUString * pValue, const sal_Char * pOpt, return false; } -static bool readOption( bool * pbOpt, const sal_Char * pOpt, +static bool readOption( bool * pbOpt, const char * pOpt, sal_uInt32 * pnIndex, const OUString & aArg) { OUString aOpt = OUString::createFromAscii(pOpt); |