]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inset.C
removed a warning from screen and added CFLAGS in lyx.spec.in.
[lyx.git] / src / insets / inset.C
index 4e09297a81c10b6e3d47b9a5d565499d69a18d09..8216147c35c0e6492cf74b230a923a48fec57769 100644 (file)
@@ -3,10 +3,10 @@
  * 
  *           LyX, The Document Processor
  *      
- *         Copyright (C) 1995 Matthias Ettrich
- *          Copyright (C) 1995-1998 The LyX Team.
+ *         Copyright 1995 Matthias Ettrich
+ *          Copyright 1995-1999 The LyX Team.
  *
- *======================================================*/
+ * ======================================================*/
 
 #include <config.h>
 
 #endif
 
 #include "lyxinset.h"
-#include "error.h"
-
-//     $Id: inset.C,v 1.1 1999/09/27 18:44:38 larsbj Exp $     
-
-#if !defined(lint) && !defined(WITH_WARNINGS)
-static char vcid[] = "$Id: inset.C,v 1.1 1999/09/27 18:44:38 larsbj Exp $";
-#endif /* lint */
+#include "debug.h"
+#include "support/lstrings.h"
 
 /* Insets default methods */
 
@@ -76,34 +71,34 @@ LyXFont Inset::ConvertFont(LyXFont font)
 
 void UpdatableInset::InsetButtonPress(int x, int y, int button)
 {
-       lyxerr.debug(LString("Inset Button Press x=")+ x +
-                     ", y=" + y + ", button=" + button);
+       lyxerr.debug() << "Inset Button Press x=" << x
+                      << ", y=" << y << ", button=" << button << endl;
 }
 
 
 void UpdatableInset::InsetButtonRelease(int x, int y, int button)
 {
-       lyxerr.debug(LString("Inset Button Release x=")+ x +
-                     ", y=" + y + ", button=" + button);
+       lyxerr.debug() << "Inset Button Release x=" << x
+                      << ", y=" << y << ", button=" << button << endl;
 }
 
 
 void UpdatableInset::InsetKeyPress(XKeyEvent *)
 {
-       lyxerr.debug("Inset Keypress");
+       lyxerr.debug() << "Inset Keypress" << endl;
 }
 
 
 void UpdatableInset::InsetMotionNotify(int x, int y, int state)
 {
-       lyxerr.debug(LString("Inset Motion Notify x=")+ x +
-                     ", y=" + y + ", state=" + state);
+       lyxerr.debug() << "Inset Motion Notify x=" << x
+                      << ", y=" << y << ", state=" << state << endl;
 }
 
 
 void UpdatableInset::InsetUnlock()
 {
-       lyxerr.debug("Inset Unlock", Error::ANY);
+       lyxerr.debug() << "Inset Unlock" << endl;
 }