From 889de665ec9d2ac25a9dccd4830cb97ed0c7c56e Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 30 Jul 2012 08:41:34 +0200 Subject: Typo ressource -> resource Change-Id: Id13e7acfbe34eca5e124c9032d36d6f158bfb831 --- rsc/inc/rscall.h | 2 +- rsc/source/parser/erscerr.cxx | 2 +- rsc/source/rsc/rsc.cxx | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'rsc') diff --git a/rsc/inc/rscall.h b/rsc/inc/rscall.h index 9bddec4cb86b..789df421613d 100644 --- a/rsc/inc/rscall.h +++ b/rsc/inc/rscall.h @@ -64,7 +64,7 @@ extern AtomContainer* pHS; #define INCLUDE_FLAG 0x0040 // der Include-Pfad wurde erweitert #define MSCPREPRO_FLAG 0x0080 // spezial Preprozessor #define PRINTSYNTAX_FLAG 0x0100 // Syntax ausgeben -#define PRELOAD_FLAG 0x0200 // Alle Ressourcen Preloaden +#define PRELOAD_FLAG 0x0200 // Alle Resourcen Preloaden #define SMART_FLAG 0x0400 // abgekuertze Name #define SRSDEFAULT_FLAG 0x1000 // immer der Default geschrieben #define NOSYSRESTEST_FLAG 0x2000 // ueberprueft nicht die Richtigkeit von (bmp, ico, cur) diff --git a/rsc/source/parser/erscerr.cxx b/rsc/source/parser/erscerr.cxx index b2442f0036c6..e08cefa3c3f1 100644 --- a/rsc/source/parser/erscerr.cxx +++ b/rsc/source/parser/erscerr.cxx @@ -192,7 +192,7 @@ void RscError::WriteError( const ERRTYPE& rError, const char * pMessage ) StdLstOut( "-fh= Header file.\n" ); StdLstOut( "-fc= Code file.\n" ); StdLstOut( "-ft= Touch a file when done in rsc2 (for dependencies)\n" ); - StdLstOut( "-fr= Ressource constructor .cxx-file.\n" ); + StdLstOut( "-fr= Resource constructor .cxx-file.\n" ); StdLstOut( "-fx= Name of .src-file.\n" ); StdLstOut( "-oil= Output directory for image list files\n" ); StdLstOut( "-r= replace by in image list files\n" ); diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx index cdf3ff4bdc42..d422de9e4380 100644 --- a/rsc/source/rsc/rsc.cxx +++ b/rsc/source/rsc/rsc.cxx @@ -176,7 +176,7 @@ RscCmdLine::RscCmdLine( int argc, char ** argv, RscError * pEH ) } } else if( !rsc_stricmp( (*ppStr) + 1, "PreLoad" ) ) - { // Alle Ressourcen mit Preload + { // Alle Resourcen mit Preload nCommands |= PRELOAD_FLAG; } else if( !rsc_stricmp( (*ppStr) + 1, "LITTLEENDIAN" ) ) @@ -249,7 +249,7 @@ RscCmdLine::RscCmdLine( int argc, char ** argv, RscError * pEH ) aOutputCxx = (*ppStr) + 4; } else if( !rsc_strnicmp( (*ppStr) + 1, "fr=", 3 ) ) - { // Name fuer .cxx-file der Ressource Konstruktoren + { // Name fuer .cxx-file der Resource Konstruktoren aOutputRcCtor = (*ppStr) + 4; } else if( !rsc_strnicmp( (*ppStr) + 1, "fx=", 3 ) ) @@ -992,7 +992,7 @@ ERRTYPE RscCompiler::Link() if ( NULL == (fExitFile = foutput = fopen( aTmpOutputRcCtor.getStr(), "w" )) ) pTC->pEH->FatalError( ERR_OPENFILE, RscId(), aTmpOutputRcCtor.getStr() ); - pTC->pEH->StdOut( "Generating .cxx ressource constructor file\n" ); + pTC->pEH->StdOut( "Generating .cxx resource constructor file\n" ); // Schreibe Datei pTC->WriteRcCtor( foutput ); -- cgit