]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetspecialchar.C
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetspecialchar.C
index e1da4d2e3760f58049226c5ebe6d18d6bf754306..21f59106a29935e38e8cf177e07f95c90d631294 100644 (file)
@@ -26,6 +26,7 @@
 
 using std::ostream;
 using std::max;
+using std::auto_ptr;
 
 
 InsetSpecialChar::InsetSpecialChar(Kind k)
@@ -56,6 +57,7 @@ void InsetSpecialChar::metrics(MetricsInfo & mi, Dimension & dim) const
        dim.wid = font_metrics::width(s, font);
        if (kind_ == HYPHENATION && dim.wid > 5)
                dim.wid -= 2; // to make it look shorter
+       dim_ = dim;
 }
 
 
@@ -238,9 +240,9 @@ int InsetSpecialChar::docbook(Buffer const *, ostream & os, bool) const
 }
 
 
-Inset * InsetSpecialChar::clone() const
+auto_ptr<InsetBase> InsetSpecialChar::clone() const
 {
-       return new InsetSpecialChar(kind_);
+       return auto_ptr<InsetBase>(new InsetSpecialChar(kind_));
 }