diff --git a/basctl/source/basicide/basobj3.cxx b/basctl/source/basicide/basobj3.cxx index e1ea675e9d9a..6b91fb0c2f48 100644 --- a/basctl/source/basicide/basobj3.cxx +++ b/basctl/source/basicide/basobj3.cxx @@ -2,9 +2,9 @@ * * $RCSfile: basobj3.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: mt $ $Date: 2000-10-19 09:19:37 $ + * last change: $Author: ab $ $Date: 2000-12-05 08:46:58 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -106,7 +106,8 @@ SbMethod* BasicIDE::CreateMacro( SbModule* pModule, const String& rMacroName ) else { BOOL bValid = FALSE; - String aStdMacroText( IDEResId( RID_STR_STDMACRONAME ) ); + String aStdMacroText( RTL_CONSTASCII_USTRINGPARAM( "Macro" ) ); + //String aStdMacroText( IDEResId( RID_STR_STDMACRONAME ) ); USHORT nMacro = 1; while ( !bValid ) { @@ -159,7 +160,8 @@ String BasicIDE::CreateDialogName( StarBASIC* pBasic, const String& rDlgName ) String aDlgName( rDlgName ); if ( aDlgName.Len() == 0 ) { - String aDlgStdName( IDEResId( RID_STR_STDDIALOGNAME ) ); + String aDlgStdName( RTL_CONSTASCII_USTRINGPARAM( "Dialog" ) ); + //String aDlgStdName( IDEResId( RID_STR_STDDIALOGNAME ) ); BOOL bValid = FALSE; USHORT i = 1; while ( !bValid ) @@ -190,7 +192,8 @@ String BasicIDE::CreateModuleName( StarBASIC* pBasic, const String& rModName ) if ( aModName.Len() == 0 ) { // Namen generieren... - String aModStdName( IDEResId( RID_STR_STDMODULENAME ) ); + String aModStdName( RTL_CONSTASCII_USTRINGPARAM( "Module" ) ); + //String aModStdName( IDEResId( RID_STR_STDMODULENAME ) ); BOOL bValid = FALSE; USHORT i = 1; while ( !bValid ) diff --git a/basctl/source/basicide/moduldl2.cxx b/basctl/source/basicide/moduldl2.cxx index 592c4e628290..8aa9b184a7c4 100644 --- a/basctl/source/basicide/moduldl2.cxx +++ b/basctl/source/basicide/moduldl2.cxx @@ -2,9 +2,9 @@ * * $RCSfile: moduldl2.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: tbe $ $Date: 2000-11-20 08:32:42 $ + * last change: $Author: ab $ $Date: 2000-12-05 08:46:58 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -302,7 +302,8 @@ void LibPage::NewLib() BasicManager* pBasMgr = BasicIDE::FindBasicManager( aCurBasMgr ); DBG_ASSERT( pBasMgr, "BasMgr?!" ); String aLibName; - String aLibStdName( IDEResId( RID_STR_STDLIBNAME ) ); + String aLibStdName( String( RTL_CONSTASCII_USTRINGPARAM( "Library" ) ) ); + //String aLibStdName( IDEResId( RID_STR_STDLIBNAME ) ); BOOL bValid = FALSE; USHORT i = 1; while ( !bValid )