]> git.lyx.org Git - features.git/blobdiff - src/insets/insetinclude.h
read the Changelog
[features.git] / src / insets / insetinclude.h
index 8bb15af6310dba4808c3e681e9050f52ad04e82a..0adf74ca740fa4713bd87e772abb5d70fe51afa1 100644 (file)
@@ -27,11 +27,13 @@ struct LaTeXFeatures;
  */
 class InsetInclude: public InsetCommand {
 public:
+#if 0
        ///
        InsetInclude(): InsetCommand("include")
        {
                flag = InsetInclude::INCLUDE;
        }
+#endif
        ///
        InsetInclude(string const &,  Buffer *);
        ///
@@ -64,7 +66,9 @@ public:
        ///
        void Validate(LaTeXFeatures &) const;
        
-        /// Input inserts anything inside a paragraph, Display can give some visual feedback 
+        /** Input inserts anything inside a paragraph.
+           Display can give some visual feedback
+       */
        bool display() const;
        ///
        string getScreenLabel() const;
@@ -88,7 +92,9 @@ public:
         */ 
        bool isVerb() const;
        ///
-       bool isVerbVisibleSpace() const { return flag == InsetInclude::VERBAST;}
+       bool isVerbVisibleSpace() const {
+               return flag == InsetInclude::VERBAST;
+       }
         ///  
        bool isInclude() const { return flag == InsetInclude::INCLUDE;}
         ///  
@@ -125,7 +131,7 @@ private:
        ///
        string filename;
        ///
-       string include_label;
+       mutable string include_label;
 };