summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorAndreas Mantke <andi@linux-87ht.site>2010-09-29 16:40:12 +0200
committerCédric Bosdonnat <cedricbosdo@openoffice.org>2010-09-29 17:44:21 +0200
commit6c5d1ade5c8b1653ff2d22197327c88274026548 (patch)
tree405e042bdbb1423ae69d3592d78079f020fd5a45 /basic
parent7be276883e857f9e11cff3c6e31e976f36d29b92 (diff)
the German comments translated to English
Diffstat (limited to 'basic')
-rw-r--r--basic/inc/basic/basmgr.hxx4
-rw-r--r--basic/inc/basic/sbmeth.hxx2
-rw-r--r--basic/inc/basic/sbx.hxx6
-rw-r--r--basic/inc/basic/sbxdef.hxx22
4 files changed, 17 insertions, 17 deletions
diff --git a/basic/inc/basic/basmgr.hxx b/basic/inc/basic/basmgr.hxx
index 886aa7f544..18b851d6be 100644
--- a/basic/inc/basic/basmgr.hxx
+++ b/basic/inc/basic/basmgr.hxx
@@ -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;
diff --git a/basic/inc/basic/sbmeth.hxx b/basic/inc/basic/sbmeth.hxx
index 38319ac4e6..7b3cd4dc03 100644
--- a/basic/inc/basic/sbmeth.hxx
+++ b/basic/inc/basic/sbmeth.hxx
@@ -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 );
};
diff --git a/basic/inc/basic/sbx.hxx b/basic/inc/basic/sbx.hxx
index 647aeea7f7..4dc2fbd36a 100644
--- a/basic/inc/basic/sbx.hxx
+++ b/basic/inc/basic/sbx.hxx
@@ -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;
diff --git a/basic/inc/basic/sbxdef.hxx b/basic/inc/basic/sbxdef.hxx
index 42117ce78b..98c26bc759 100644
--- a/basic/inc/basic/sbxdef.hxx
+++ b/basic/inc/basic/sbxdef.hxx
@@ -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, // ungltiger Parameter
+ SbxERR_BAD_PARAMETER = 14, // ung�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 untersttzt
+ SbxERR_BAD_METHOD = 438, // Methode nicht unterst�tzt
SbxERR_OLE_ERROR = 440, // OLE Automation-Fehler
- SbxERR_BAD_ACTION = 445, // Aktion nicht untersttzt
+ SbxERR_BAD_ACTION = 445, // Aktion nicht unterst�tzt
SbxERR_NO_NAMED_ARGS = 446, // Keine benannten Argumente
- SbxERR_BAD_LOCALE = 447, // Laenderspezifische Einstellungen nicht untersttzt
+ SbxERR_BAD_LOCALE = 447, // Laenderspezifische Einstellungen nicht unterst�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�lt keine Elemente
};
*/