X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finset.C;h=21ca38df6c5f569c926d1714fdae411304a1423b;hb=a4e4ebc7eb7752c688ae2d87a2e89728d3d66ff9;hp=3e0a1ce90be29af4f6082eff868c696f5cc61f55;hpb=99d1627a471b92f403598d03dfc861ddc3c11be0;p=lyx.git diff --git a/src/insets/inset.C b/src/insets/inset.C index 3e0a1ce90b..21ca38df6c 100644 --- a/src/insets/inset.C +++ b/src/insets/inset.C @@ -39,14 +39,16 @@ using std::endl; unsigned int Inset::inset_id = 0; Inset::Inset() - : top_x(0), topx_set(false), top_baseline(0), scx(0), + : InsetBase(), + top_x(0), topx_set(false), 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) - : top_x(0), topx_set(false), top_baseline(0), scx(0), owner_(0), + : InsetBase(), + top_x(0), topx_set(false), top_baseline(0), scx(0), owner_(0), name_(in.name_), background_color_(in.background_color_) { if (same_id) @@ -56,12 +58,6 @@ Inset::Inset(Inset const & in, bool same_id) } -bool Inset::deletable() const -{ - return true; -} - - bool Inset::directWrite() const { return false;