summaryrefslogtreecommitdiff
path: root/rsc/inc/rscpar.hxx
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2017-03-31 06:37:28 +0000
committerMichael Stahl <mstahl@redhat.com>2017-03-31 09:04:03 +0000
commite5bbb21b859e4191e323f25eee361a2d8cea6a08 (patch)
tree1e1cc75a780aec2222232e77746af6b6d28e3c76 /rsc/inc/rscpar.hxx
parentbb37c73bdc7544f67d1acb98af6248fb43140ca7 (diff)
tdf#39468 Translate German comments
Translate German comments in rsc/ Change-Id: I8133f11566c0717fdfc796b79dca76f2365535ad Reviewed-on: https://gerrit.libreoffice.org/35957 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'rsc/inc/rscpar.hxx')
-rw-r--r--rsc/inc/rscpar.hxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/rsc/inc/rscpar.hxx b/rsc/inc/rscpar.hxx
index a299af4a20ed..e0c3e861e525 100644
--- a/rsc/inc/rscpar.hxx
+++ b/rsc/inc/rscpar.hxx
@@ -30,26 +30,26 @@ class RscTypCont;
class RscFileInst
{
- ERRTYPE aFirstError;// Erster Fehler
- sal_uInt32 nErrorLine; // Zeile des ersten Fehlers
- sal_uInt32 nErrorPos; // Position des ersten Fehlers
- sal_uInt32 nLineNo; // Zeile in der Eingabedatei
- RscFileTab::Index lFileIndex; // Index auf Eingabedatei
- RscFileTab::Index lSrcIndex; // Index auf Basisdatei
- FILE * fInputFile; // Eingabedatei
- char * pInput; // Lesepuffer
- static const sal_uInt32 nInputBufLen = READBUFFER_MAX; // Laenge des Lesepuffers
- sal_uInt32 nInputPos; // Position im Lesepuffer
- sal_uInt32 nInputEndPos;// Ende im Lesepuffer
- char * pLine; // Zeile
- sal_uInt32 nLineBufLen;//Lange des Zeilenpuffres
- sal_uInt32 nScanPos; // Position in der Zeile
+ ERRTYPE aFirstError;
+ sal_uInt32 nErrorLine;
+ sal_uInt32 nErrorPos;
+ sal_uInt32 nLineNo; // line in input file
+ RscFileTab::Index lFileIndex; // index input file
+ RscFileTab::Index lSrcIndex; // index base file
+ FILE * fInputFile;
+ char * pInput; // read buffer
+ static const sal_uInt32 nInputBufLen = READBUFFER_MAX;
+ sal_uInt32 nInputPos;
+ sal_uInt32 nInputEndPos;
+ char * pLine;
+ sal_uInt32 nLineBufLen;
+ sal_uInt32 nScanPos; // line position
int cLastChar;
bool bEof;
public:
RscTypCont * pTypCont;
- void Init(); // ctor initialisieren
+ void Init(); // init ctor
RscFileInst( RscTypCont * pTC, RscFileTab::Index lIndexSrc,
RscFileTab::Index lFileIndex, FILE * fFile );
~RscFileInst();
@@ -67,7 +67,7 @@ public:
pLine[ nScanPos++ ] : GetChar();
}
void GetNewLine();
- // Fehlerbehandlung
+ // error handling
void SetError( ERRTYPE aError );
};