]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseterror.C
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / inseterror.C
index 9fa6b281d02cfd1c41cded00857b1757c7523abf..cd4b51737c3d6bfcb4c3ceac13f4cad805d1849b 100644 (file)
@@ -16,6 +16,7 @@
 
 #include "BufferView.h"
 #include "font.h"
+#include "lyxfont.h"
 #include "gettext.h"
 #include "inseterror.h"
 #include "LyXView.h"
@@ -26,7 +27,7 @@ using std::ostream;
 
 /* Error, used for the LaTeX-Error Messages */
 
-InsetError::InsetError(string const & str)
+InsetError::InsetError(string const & str, bool)
        : contents(str)
 {}
 
@@ -79,13 +80,19 @@ void InsetError::draw(BufferView * bv, LyXFont const & font,
 }
 
 
-string const InsetError::EditMessage() const 
+string const InsetError::editMessage() const 
 {
        return _("Opened error");
 }
 
 
-void InsetError::Edit(BufferView * bv, int, int, unsigned int)
+void InsetError::edit(BufferView * bv, int, int, unsigned int)
 {
-       bv->owner()->getDialogs()->showError( this );
+       bv->owner()->getDialogs()->showError(this);
+}
+
+
+void InsetError::edit(BufferView * bv, bool)
+{
+       edit(bv, 0, 0, 0);
 }