]> git.lyx.org Git - features.git/commitdiff
dont use cerr directly use lyxerr
authorLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 16 Mar 2001 08:29:10 +0000 (08:29 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Fri, 16 Mar 2001 08:29:10 +0000 (08:29 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1781 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/ChangeLog
src/mathed/math_cursor.C

index 6c98a0638cc48698703266b64757218c50c2a4ea..14ae34eed6d7a39ec9b0f17000b0ab3c0bd9c596 100644 (file)
@@ -1,3 +1,6 @@
+2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
+
+       * math_cursor.C: use lyxerr instead of cerr.
 
 2001-03-15  André Pönitz  <poenitz@htwm.de>
 
index 40997ce9426df62aeeabe481563210e8c50fe0b5..9fb9d0ab7a5f87491def33ad999170da67ebad47 100644 (file)
@@ -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];
        }