]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/command_inset.h
Andreas' patch to prevent crash on click on previewd inset
[lyx.git] / src / mathed / command_inset.h
index b724832cc2cb00e127de734e8b5e41224320cf27..b0de073df565ac55419f8a303c6b176dca587c27 100644 (file)
@@ -14,6 +14,7 @@
 #define COMMAND_INSET_H
 
 #include "math_nestinset.h"
+
 #include "insets/render_button.h"
 
 
@@ -23,8 +24,6 @@ public:
        ///
        explicit CommandInset(std::string const & name);
        ///
-       virtual std::auto_ptr<InsetBase> clone() const;
-       ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
@@ -36,16 +35,16 @@ public:
        virtual std::string const screenLabel() const;
        /// generate something that will be understood by the Dialogs.
        std::string const createDialogStr(std::string const & name) const;
-
-       std::string const & commandname() const { return name_; }
-protected:
        ///
-       virtual
-       DispatchResult
-       priv_dispatch(LCursor & cur, FuncRequest const & cmd);
+       std::string const & commandname() const { return name_; }
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+
+       ///
        std::string name_;
+       ///
        mutable bool set_label_;
+       ///
        mutable RenderButton button_;
 };