]> git.lyx.org Git - features.git/commitdiff
Tiny compile fix.
authorAngus Leeming <leeming@lyx.org>
Fri, 21 Dec 2001 12:16:10 +0000 (12:16 +0000)
committerAngus Leeming <leeming@lyx.org>
Fri, 21 Dec 2001 12:16:10 +0000 (12:16 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3260 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/tabular_funcs.C

index 3b8aa8656241dc56e9e625d7f13431e85c557a5b..b51095959433456bc411bab68ec6a4707621353a 100644 (file)
@@ -1,3 +1,7 @@
+2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
+
+       * tabular_funcs.C: getline -> std::getline
+
 2001-12-21  Juergen Vigna  <jug@sad.it>
 
        * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
index 2f44fd3e169a3a16fd2a21ecbd71233eb903cbe3..724a90ae07741f4a7469647430c2ae85e471c87d 100644 (file)
@@ -229,7 +229,7 @@ void l_getline(istream & is, string & str)
 {
        str.erase();
        while (str.empty()) {
-               getline(is, str);
+               std::getline(is, str);
                if (!str.empty() && str[str.length() - 1] == '\r')
                        str.erase(str.length() - 1);
        }