]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetListingsParams.h
Fixup 572b06d6: reduce cache size for breakString
[lyx.git] / src / insets / InsetListingsParams.h
index ce50de669d706862d3e8016c49967035de977900..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;
@@ -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; }
@@ -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_;
 };