]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetListingsParams.h
Fix use of std::regex_match
[lyx.git] / src / insets / InsetListingsParams.h
index a7120badebb25bae325f1b1282ae4b1e1c2f7c6c..90c5adb763fa13d1c9ab8e96cefacc863abaedef 100644 (file)
@@ -25,7 +25,7 @@ public:
 
        ///
        InsetListingsParams(std::string const &, bool in=false,
-               InsetCollapsable::CollapseStatus s = InsetCollapsable::Open);
+               InsetCollapsible::CollapseStatus s = InsetCollapsible::Open);
 
        /// write parameters to an ostream
        void write(std::ostream &) const;
@@ -38,7 +38,7 @@ public:
 
        /// add key=value to params_. key_=value will be used if key=value already exists
        /// unless replace=true.
-       void addParam(std::string const & key, std::string const & value, 
+       void addParam(std::string const & key, std::string const & value,
                        bool replace = false);
 
        /// add a few parameters
@@ -65,7 +65,7 @@ public:
        bool isFloat() const;
 
        ///
-       InsetCollapsable::CollapseStatus status() const { return status_; }
+       InsetCollapsible::CollapseStatus status() const { return status_; }
 
        ///
        void setInline(bool i) { inline_ = i; }
@@ -84,7 +84,7 @@ public:
 
        ///
        void clear() { params_.clear(); }
-       
+
        /// validate parameter, return an error message
        docstring validate() const;
 
@@ -97,7 +97,7 @@ private:
 
        /// Do we have a param with the given \c key?
        bool hasParam(std::string const & key) const;
-       /// return the value for the given \c key, if avaible, else empty string
+       /// return the value for the given \c key, if available, else empty string
        std::string getValue(std::string const & key) const;
 
        /// key-value pairs of the parameters
@@ -105,8 +105,8 @@ private:
        typedef std::vector<std::pair<std::string, std::string> > keyValuePair;
        keyValuePair params_;
 
-       /// collapsable status
-       InsetCollapsable::CollapseStatus status_;
+       /// collapsible status
+       InsetCollapsible::CollapseStatus status_;
 };