From 837da12d789b61e6cc4f584fdf9efc0501fd3b7a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20Gullik=20Bj=C3=B8nnes?= Date: Fri, 16 Mar 2001 08:29:10 +0000 Subject: [PATCH] dont use cerr directly use lyxerr git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1781 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/ChangeLog | 3 +++ src/mathed/math_cursor.C | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) 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]; } -- 2.39.5