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]; }