]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
ws changes only
[lyx.git] / src / insets / insetlabel.h
index 805004f0ac00b78a9a552795cf1405338cb59489..c9db1eea302c6ef34df34707cc0932a3d5feb22e 100644 (file)
@@ -14,6 +14,7 @@
 
 
 #include "insetcommand.h"
+#include <boost/weak_ptr.hpp>
 
 class InsetLabel : public InsetCommand {
 public:
@@ -22,19 +23,17 @@ public:
        ///
        ~InsetLabel();
        ///
-       virtual std::auto_ptr<InsetBase> clone() const {
-               return std::auto_ptr<InsetBase>(new InsetLabel(params()));
-       }
+       std::auto_ptr<InsetBase> clone() const;
        ///
        virtual dispatch_result localDispatch(FuncRequest const & cmd);
        ///
-       string const getScreenLabel(Buffer const &) const { return getContents(); }
+       std::string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        InsetOld::Code lyxCode() const { return InsetOld::LABEL_CODE; }
        /// Appends \c list with this label
-       void getLabelList(Buffer const &, std::vector<string> & list) const;
+       void getLabelList(Buffer const &, std::vector<std::string> & list) const;
        ///
        int latex(Buffer const &, std::ostream &,
                  LatexRunParams const &) const;