From: Lars Gullik Bjønnes Date: Fri, 16 Mar 2001 08:29:10 +0000 (+0000) Subject: dont use cerr directly use lyxerr X-Git-Tag: 1.6.10~21445 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=837da12d789b61e6cc4f584fdf9efc0501fd3b7a;p=features.git dont use cerr directly use lyxerr git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1781 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index 6c98a0638c..14ae34eed6 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,3 +1,6 @@ +2001-03-16 Lars Gullik Bjønnes + + * math_cursor.C: use lyxerr instead of cerr. 2001-03-15 André Pönitz diff --git a/src/mathed/math_cursor.C b/src/mathed/math_cursor.C index 40997ce942..9fb9d0ab7a 100644 --- a/src/mathed/math_cursor.C +++ b/src/mathed/math_cursor.C @@ -45,7 +45,6 @@ static MathedArray selarray; -using std::cerr; using std::endl; // This was very smaller, I'll change it later @@ -85,7 +84,7 @@ struct MathStackXIter { MathedXIter * Item(int idx) { if (idx + 1 > i) - cerr << "Wrong index: " << idx << " i: " << i << endl; + lyxerr << "Wrong index: " << idx << " i: " << i << endl; return &item[i - idx - 1]; }