]> git.lyx.org Git - lyx.git/blobdiff - src/lyxtextclass.h
fix crash when collapsing ert with cursor inside
[lyx.git] / src / lyxtextclass.h
index fd4eeb986a07cbf0dcfb98358bd5837cd9bbb3c7..a52cd7ab5973d744492793b8b1eaf492dee658fa 100644 (file)
@@ -23,7 +23,8 @@ class FloatList;
 
 
 ///
-struct CharStyle {
+class CharStyle {
+public:
        std::string name;
        std::string latextype;
        std::string latexname;
@@ -84,6 +85,8 @@ public:
 
        /// Sees to that the textclass structure has been loaded
        bool load() const;
+       /// Has this layout file been loaded yet?
+       bool loaded() const { return loaded_; }
 
        /// the list of floats defined in the document class
        FloatList & floats();
@@ -227,7 +230,7 @@ private:
        LayoutList layoutlist_;
        /// CharStyles available to this layout
        mutable CharStyles charstylelist_;
-       
+
        /// available types of float, eg. figure, algorithm.
        boost::shared_ptr<FloatList> floatlist_;
 
@@ -235,7 +238,7 @@ private:
        boost::shared_ptr<Counters> ctrs_;
 
        /// Has this layout file been loaded yet?
-       mutable bool loaded;
+       mutable bool loaded_;
 
        /// Is the TeX class available?
        bool texClassAvail_;