]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inset.C
fix #832
[lyx.git] / src / insets / inset.C
index 1025cc7bf1a45d89eca0179b6b7e24ef3532ef48..5c89fc89f8623335d14c8c66e836f8d065508702 100644 (file)
 
 using std::endl;
 
-// Insets default methods
 
 // Initialization of the counter for the inset id's,
 unsigned int Inset::inset_id = 0;
 
 Inset::Inset()
-       :       InsetBase(),
-               top_x(0), topx_set(false), top_baseline(0), scx(0),
-         id_(inset_id++), owner_(0), par_owner_(0),
-         background_color_(LColor::inherit)
+       : InsetBase(),
+       top_x(0), top_baseline(0), scx(0),
+       id_(inset_id++), owner_(0), par_owner_(0),
+       background_color_(LColor::inherit)
 {}
 
 
 Inset::Inset(Inset const & in, bool same_id)
-       :       InsetBase(),
-               top_x(0), topx_set(false), top_baseline(0), scx(0), owner_(0),
-         name_(in.name_), background_color_(in.background_color_)
+       : InsetBase(),
+       top_x(0), top_baseline(0), scx(0), owner_(0),
+       name_(in.name_), background_color_(in.background_color_)
 {
        if (same_id)
                id_ = in.id();
@@ -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;
 }