From 685c9642c190c8d2585f46c058e950d279e0aa8f Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 18 Dec 2019 14:23:33 +0200 Subject: sal_Char->char in cppcanvas..cui Change-Id: I7e9fa7011f1e0bf143f86055718c772caebf8ee6 Reviewed-on: https://gerrit.libreoffice.org/85397 Tested-by: Jenkins Reviewed-by: Noel Grandin --- cpputools/source/unoexe/unoexe.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpputools') 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); -- cgit