diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 09:43:02 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 09:43:02 +0000 |
commit | 908ccc5e0a2bc3787c8c6f017d7db8e73ce954b8 (patch) | |
tree | 0592e85c204742d4383990835e5fd9ccf3dcf241 /idl | |
parent | 43822d41c27b97f77a38fed73642be6ec411e97d (diff) |
INTEGRATION: CWS warnings01 (1.4.8); FILE MERGED
2005/10/27 16:03:18 sb 1.4.8.2: #i53898# Made code warning-free.
2005/10/14 11:27:23 sb 1.4.8.1: #i53898# Made code warning-free.
Diffstat (limited to 'idl')
-rw-r--r-- | idl/source/prj/command.cxx | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/idl/source/prj/command.cxx b/idl/source/prj/command.cxx index 3ec1c1a0a900..64e268baec22 100644 --- a/idl/source/prj/command.cxx +++ b/idl/source/prj/command.cxx @@ -4,9 +4,9 @@ * * $RCSfile: command.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-07 17:51:40 $ + * last change: $Author: hr $ $Date: 2006-06-19 10:43:02 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -46,14 +46,12 @@ #include <tools/fsys.hxx> #endif -#pragma hdrstop - /************************************************************************* |* |* Syntaxbeschreibung |* *************************************************************************/ -char* SyntaxStrings[] = { +char const * SyntaxStrings[] = { "basic-type:", "\tvoid| char| int| float| double|", "\tUINT16| INT16| UINT32| INT32| BOOL|", @@ -152,7 +150,7 @@ char CommandLineSyntax[] = |* Letzte Aenderung MM 15.12.94 |* *************************************************************************/ -void Init( const SvCommand & rCommand ) +void Init() { if( !IDLAPP->pHashTable ) IDLAPP->pHashTable = new SvStringHashTable( 2801 ); @@ -365,7 +363,10 @@ SvCommand::SvCommand( int argc, char ** argv ) } else { - printf( "unknown switch: %s\n", aParam.GetBuffer() ); + printf( + "unknown switch: %s\n", + rtl::OUStringToOString( + aParam, RTL_TEXTENCODING_UTF8).getStr()); exit( -1 ); } } @@ -375,9 +376,9 @@ SvCommand::SvCommand( int argc, char ** argv ) } else if( aParam.EqualsIgnoreCaseAscii( "syntax" ) ) { // Hilfe - int i = 0; - while(SyntaxStrings[i]) - printf("%s\n",SyntaxStrings[i++]); + int j = 0; + while(SyntaxStrings[j]) + printf("%s\n",SyntaxStrings[j++]); } else if( aParam.EqualsIgnoreCaseAscii( "i", 0, 1 ) ) { // Include-Pfade definieren @@ -398,7 +399,10 @@ SvCommand::SvCommand( int argc, char ** argv ) { #if SUPD>589 // temporary compatibility hack - printf( "unknown switch: %s\n", aParam.GetBuffer() ); + printf( + "unknown switch: %s\n", + rtl::OUStringToOString( + aParam, RTL_TEXTENCODING_UTF8).getStr()); exit( -1 ); #endif } |