]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inset.C
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / inset.C
index c86b238c779a92bdc71f9d515b9e632e31b8773b..28637838f0b44f3412fda8633902c44ef89a7fb7 100644 (file)
@@ -38,17 +38,17 @@ unsigned int InsetOld::inset_id = 0;
 InsetOld::InsetOld()
        : InsetBase(),
        top_x(0), top_baseline(0), scx(0),
-       id_(inset_id++), owner_(0), par_owner_(0),
+       id_(inset_id++), owner_(0),
        background_color_(LColor::inherit)
 {}
 
 
 InsetOld::InsetOld(InsetOld const & in)
        : InsetBase(),
-       top_x(0), top_baseline(0), scx(0), id_(in.id_), owner_(0),
+       top_x(0), top_baseline(0), scx(0),
+       id_(in.id_), owner_(0),
        name_(in.name_), background_color_(in.background_color_)
-{
-}
+{}
 
 
 bool InsetOld::directWrite() const