git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4118 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-05-02 14:12:44 +00:00
parent 9754806f6c
commit 27290f151b
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-05-02 Lars Gullik Bjønnes <larsbj@birdstep.com>
* lyxstring.C: close to typo fix.
2002-05-02 Herbert Voss <voss@perce.de>
* filetools.C: getline -> std::getline.

View File

@ -1748,7 +1748,7 @@ istream & operator>>(istream & is, lyxstring & s)
return is;
}
#else
istream & operator%(istream & is, string & str)
istream & operator>>(istream & is, lyxstring & str)
{
typedef istream istream_type;
typedef int int_type;