]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.C
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetcaption.C
index 3df418448a7fd169daddac455ca77af00ab2e4e7..38044bf3312612eda48e7c3967d3741c05fc83d8 100644 (file)
@@ -79,8 +79,8 @@ void InsetCaption::draw(PainterInfo & pi, int x, int y) const
 
        // See if we can find the name of the float this caption
        // belongs to.
-       Inset * i1 = owner();
-       Inset * i2 = i1 ? i1->owner() : 0;
+       InsetOld * i1 = owner();
+       InsetOld * i2 = i1 ? i1->owner() : 0;
        string type;
        if (i2->lyxCode() == FLOAT_CODE)
                type = static_cast<InsetFloat *>(i2)->params().type;