]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inset.C
fix #832
[lyx.git] / src / insets / inset.C
index ff8d77a51fc33b065ae64eaa6e1a98eb0344cc9a..5c89fc89f8623335d14c8c66e836f8d065508702 100644 (file)
@@ -29,7 +29,6 @@
 
 using std::endl;
 
-// Insets default methods
 
 // Initialization of the counter for the inset id's,
 unsigned int Inset::inset_id = 0;
@@ -66,10 +65,6 @@ Inset::EDITABLE Inset::editable() const
 }
 
 
-void Inset::edit(BufferView *, int, int, mouse_button::state)
-{}
-
-
 void Inset::validate(LaTeXFeatures &) const
 {}
 
@@ -80,10 +75,6 @@ bool Inset::autoDelete() const
 }
 
 
-void Inset::edit(BufferView *, bool)
-{}
-
-
 #if 0
 LyXFont const Inset::convertFont(LyXFont const & font) const
 {
@@ -143,10 +134,10 @@ void Inset::setFont(BufferView *, LyXFont const &, bool, bool)
 {}
 
 
-bool Inset::forceDefaultParagraphs(Inset const * in) const
+bool Inset::forceDefaultParagraphs(Inset const * inset) const
 {
        if (owner())
-               return owner()->forceDefaultParagraphs(in);
+               return owner()->forceDefaultParagraphs(inset);
        return false;
 }