]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibitem.C
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetbibitem.C
index 0ed0dc44bee4aa6ee1f51c7178af400a44eb3547..95b0f089ac6d672a2971f7ce4763e119a97d1547 100644 (file)
@@ -23,6 +23,7 @@
 using namespace lyx::support;
 
 using std::max;
+using std::auto_ptr;
 
 
 int InsetBibitem::key_counter = 0;
@@ -44,11 +45,11 @@ InsetBibitem::~InsetBibitem()
 }
 
 
-InsetBase * InsetBibitem::clone() const
+auto_ptr<InsetBase> InsetBibitem::clone() const
 {
        InsetBibitem * b = new InsetBibitem(params());
        b->setCounter(counter);
-       return b;
+       return auto_ptr<InsetBase>(b);
 }
 
 
@@ -65,20 +66,8 @@ dispatch_result InsetBibitem::localDispatch(FuncRequest const & cmd)
                InsetCommandMailer::string2params(cmd.argument, p);
                if (p.getCmdName().empty())
                        return DISPATCHED;
-
-               if (view() && p.getContents() != params().getContents()) {
-                       view()->ChangeCitationsIfUnique(params().getContents(),
-                                                       p.getContents());
-               }
-
                setParams(p);
                cmd.view()->updateInset(this);
-
-               // We need to do a redraw because the maximum
-               // InsetBibitem width could have changed
-#warning please check you mean repaint() not update(),
-#warning and whether the repaint() is needed at all
-               cmd.view()->repaint();
                cmd.view()->fitCursor();
                return DISPATCHED;
        }
@@ -138,7 +127,7 @@ string const InsetBibitem::getScreenLabel(Buffer const *) const
 
 
 // ale070405 This function maybe shouldn't be here. We'll fix this at 0.13.
-int bibitemMaxWidth(BufferView * bv, LyXFont const & font)
+int bibitemMaxWidth(BufferView * bv, LyXFont const &)
 {
        int w = 0;
        // Ha, now we are mainly at 1.2.0 and it is still here (Jug)
@@ -147,7 +136,8 @@ int bibitemMaxWidth(BufferView * bv, LyXFont const & font)
        ParagraphList::iterator end = bv->buffer()->paragraphs.end();
        for (; it != end; ++it) {
                if (it->bibitem()) {
-                       int const wx = it->bibitem()->width(bv, font);
+#warning metrics broken!
+                       int const wx = it->bibitem()->width();
                        if (wx > w)
                                w = wx;
                }