]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcommand.h
* In the process of fixing the math background color bug, this commit transfer backgr...
[lyx.git] / src / insets / insetcommand.h
index c8788c946f4853294c412bc2281da12656302293..a691582ed7b1d07e23ffc4394a0cf64767d9b5ff 100644 (file)
@@ -60,12 +60,14 @@ public:
        InsetCommandParams const & params() const { return p_; }
        /// FIXME remove
        std::string const getContents() const { return p_.getContents(); }
+protected:
        /// FIXME remove
        void setContents(std::string const & c)
        {
                updateButtonLabel_ = true;
                p_.setContents(c);
        }
+public:
        ///
        void setParam(std::string const & name, docstring const & value)
        {
@@ -79,10 +81,6 @@ public:
        }
        /// FIXME remove
        virtual void replaceContents(std::string const & from, std::string const & to);
-       /// FIXME remove
-       std::string const getOptions() const { return p_.getOptions(); }
-       /// FIXME remove
-       std::string const getSecOptions() const { return p_.getSecOptions(); }
        ///
        RenderButton & button() const { return button_; }
        ///
@@ -104,18 +102,6 @@ protected:
                p_.setCmdName(n);
        }
        ///
-       void setOptions(std::string const & o)
-       {
-               updateButtonLabel_ = true;
-               p_.setOptions(o);
-       }
-       ///
-       void setSecOptions(std::string const & s)
-       {
-               updateButtonLabel_ = true;
-               p_.setSecOptions(s);
-       }
-       ///
        void setParams(InsetCommandParams const &);
        /// This should provide the text for the button
        virtual docstring const getScreenLabel(Buffer const &) const = 0;