the German comments translated to English

This commit is contained in:
Andreas Mantke 2010-09-29 16:40:12 +02:00 committed by Cédric Bosdonnat
parent 17d59daec1
commit 735fba058b
4 changed files with 17 additions and 17 deletions

View file

@ -166,7 +166,7 @@ protected:
BasicLibInfo* FindLibInfo( StarBASIC* pBasic ) const;
void CheckModules( StarBASIC* pBasic, BOOL bReference ) const;
void SetFlagToAllLibs( short nFlag, BOOL bSet ) const;
BasicManager(); // Nur zum anpassen von Pfaden bei 'Speichern unter'.
BasicManager(); // This is used only to customize the paths of 'Save as'.
~BasicManager();
public:
@ -211,7 +211,7 @@ public:
BOOL LoadLib( USHORT nLib );
BOOL RemoveLib( USHORT nLib, BOOL bDelBasicFromStorage );
// Modify-Flag wird nur beim Speichern zurueckgesetzt.
// Modify-Flag will be reset only during save.
BOOL IsModified() const;
BOOL IsBasicModified() const;

View file

@ -71,7 +71,7 @@ public:
void SetDebugFlags( USHORT n ) { nDebugFlags = n; }
void GetLineRange( USHORT&, USHORT& );
// Schnittstelle zum Ausfuehren einer Methode aus den Applikationen
// Interface to execute a method from the applications
virtual ErrCode Call( SbxValue* pRet = NULL );
virtual void Broadcast( ULONG nHintId );
};

View file

@ -158,9 +158,9 @@ public:
#ifndef __SBX_SBXARRAY
#define __SBX_SBXARRAY
// SbxArray ist ein eindimensionales, dynamisches Array
// von SbxVariablen. Put()/Insert() konvertieren die Variablen in den
// angegebenen Datentyp, falls er nicht SbxVARIANT ist.
// SbxArray is an unidimensional, dynamic Array
// The variables convert from SbxVariablen. Put()/Insert() into the
// declared datatype, if they are not SbxVARIANT.
class SbxVarRefs;
class SbxVariableRef;

View file

@ -67,7 +67,7 @@ enum SbxDataType {
SbxOBJECT = 9, // * SbxBase object pointer
SbxERROR = 10, // * Error (UINT16)
SbxBOOL = 11, // * Boolean (0 or -1)
SbxVARIANT = 12, // * Anzeige fuer varianten Datentyp
SbxVARIANT = 12, // * Display for variant datatype
SbxDATAOBJECT = 13, // * Common data object w/o ref count
SbxCHAR = 16, // * signed char
@ -86,9 +86,9 @@ enum SbxDataType {
SbxUSERDEF = 29, // user defined
SbxLPSTR = 30, // * null terminated string
SbxLPWSTR = 31, // wide null terminated string
SbxCoreSTRING = 32, // AB 10.4.97, fuer GetCoreString(), nur zum Konvertieren
SbxWSTRING = 33, // AB 4.10.2000 Reimplemented for backwards compatibility (#78919)
SbxWCHAR = 34, // AB 4.10.2000 Reimplemented for backwards compatibility (#78919)
SbxCoreSTRING = 32, // from 1997/4/10 for GetCoreString(), only for converting
SbxWSTRING = 33, // from 2000/10/4 Reimplemented for backwards compatibility (#78919)
SbxWCHAR = 34, // from 2000/10/4 Reimplemented for backwards compatibility (#78919)
SbxSALINT64 = 35, // for UNO hyper
SbxSALUINT64 = 36, // for UNO unsigned hyper
SbxDECIMAL = 37, // for UNO/automation Decimal
@ -155,7 +155,7 @@ enum SbxNameType { // Type of the questioned name of a variable
#endif
// AB: 20.3.96: New error messages
// from 1996/3/20: New error messages
typedef ULONG SbxError; // Preserve old type
#endif
@ -189,7 +189,7 @@ typedef ULONG SbxError; // Preserve old type
#define ERRCODE_SBX_BAD_INDEX (12UL | ERRCODE_AREA_SBX | \
ERRCODE_CLASS_SBX) // Invalid object index
#define ERRCODE_SBX_NO_ACTIVE_OBJECT (13UL | ERRCODE_AREA_SBX | \
ERRCODE_CLASS_ACCESS) // Object ist not activated
ERRCODE_CLASS_ACCESS) // Object is not activated
#define ERRCODE_SBX_BAD_PROP_VALUE (14UL | ERRCODE_AREA_SBX | \
ERRCODE_CLASS_RUNTIME) // Bad property value
#define ERRCODE_SBX_PROP_READONLY (15UL | ERRCODE_AREA_SBX | \
@ -270,7 +270,7 @@ enum SbxError { // Ergebnis einer Rechenoperation/Konversion
SbxERR_BOUNDS = 9, // Array-Index ungueltig
SbxERR_ZERODIV = 11, // Division durch Null
SbxERR_CONVERSION = 13, // falscher Datentyp
SbxERR_BAD_PARAMETER = 14, // ung<6E>ltiger Parameter
SbxERR_BAD_PARAMETER = 14, // ung<6E>ltiger Parameter
SbxERR_PROC_UNDEFINED = 35, // BASIC-Sub oder Function undefiniert
SbxERR_ERROR = 51, // andere Fehler
// Objektbezogene Fehler
@ -285,15 +285,15 @@ enum SbxError { // Ergebnis einer Rechenoperation/Konversion
SbxERR_NO_METHOD = 423, // Property oder Methode unbekannt
SbxERR_INVALID_USAGE_OBJECT=425,// Falsche Verwendung eines Objekts
SbxERR_NO_OLE = 430, // Kein OLE-Objekt
SbxERR_BAD_METHOD = 438, // Methode nicht unterst<73>tzt
SbxERR_BAD_METHOD = 438, // Methode nicht unterst<73>tzt
SbxERR_OLE_ERROR = 440, // OLE Automation-Fehler
SbxERR_BAD_ACTION = 445, // Aktion nicht unterst<73>tzt
SbxERR_BAD_ACTION = 445, // Aktion nicht unterst<73>tzt
SbxERR_NO_NAMED_ARGS = 446, // Keine benannten Argumente
SbxERR_BAD_LOCALE = 447, // Laenderspezifische Einstellungen nicht unterst<73>tzt
SbxERR_BAD_LOCALE = 447, // Laenderspezifische Einstellungen nicht unterst<73>tzt
SbxERR_NAMED_NOT_FOUND = 448,// Unbekanntes benanntes Argument
SbxERR_NOT_OPTIONAL = 449, // Argument nicht optional
SbxERR_WRONG_ARGS = 450, // Falsche Zahl von Argumenten
SbxERR_NOT_A_COLL = 451 // Objekt enthlt keine Elemente
SbxERR_NOT_A_COLL = 451 // Objekt enth<EFBFBD>lt keine Elemente
};
*/