diff options
author | Nikolai Pretzell <np@openoffice.org> | 2001-06-22 08:44:39 +0000 |
---|---|---|
committer | Nikolai Pretzell <np@openoffice.org> | 2001-06-22 08:44:39 +0000 |
commit | 081687855fadd060d0a13dcdceb02e9e9c5da2e9 (patch) | |
tree | 45db84bf0d4497a596be2ba4d6a1c9a57a559b9a /soltools/inc | |
parent | a1519e2d4b9f7dc704af92738b9f9a2948bf373d (diff) |
Bugfix: Empty lines caused eof under Linux.
Diffstat (limited to 'soltools/inc')
-rw-r--r-- | soltools/inc/gi_parse.hxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/soltools/inc/gi_parse.hxx b/soltools/inc/gi_parse.hxx index 7d2666438da3..8d0f3a2e910b 100644 --- a/soltools/inc/gi_parse.hxx +++ b/soltools/inc/gi_parse.hxx @@ -2,9 +2,9 @@ * * $RCSfile: gi_parse.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: np $ $Date: 2001-06-11 16:05:17 $ + * last change: $Author: np $ $Date: 2001-06-22 09:44:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -136,8 +136,7 @@ class GenericInfo_Parser : public GenericInfoParseTypes GenericInfoList_Browser & io_rSrc ); - void ReadLine( - std::istream & i_rSrc ); + void ReadLine(); bool InterpretLine(); E_LineType ClassifyLine(); @@ -180,6 +179,9 @@ class GenericInfo_Parser : public GenericInfoParseTypes pResult; GenericInfoList_Browser * pResource; + + char * dpBuffer; + char * sFilePtr; }; |