]> git.lyx.org Git - lyx.git/blobdiff - src/buffer.h
Fixes for/in insettabular/text.
[lyx.git] / src / buffer.h
index 95fbc22d4985fd980a0c3d23dc0cbfe61757cf86..3a6465b3b1c3f8d3d9dcd4405be075ddf29130dc 100644 (file)
@@ -166,6 +166,11 @@ public:
        void latexParagraphs(std::ostream & os, LyXParagraph * par,
                             LyXParagraph * endpar, TexRow & texrow) const;
 
+        ///
+       void SimpleDocBookOnePar(std::ostream &, string & extra,
+                                LyXParagraph * par, int & desc_on,
+                                int depth) const ;
+
        ///
        int runChktex();
 
@@ -236,7 +241,7 @@ public:
        string const getLatexName(bool no_path = true) const;
 
        /// Change name of buffer. Updates "read-only" flag.
-       void fileName(string const & newfile);
+       void setFileName(string const & newfile);
 
        /// Name of the document's parent
        void setParentName(string const &);
@@ -366,10 +371,6 @@ private:
         ///
        void SimpleLinuxDocOnePar(std::ostream & os, LyXParagraph * par,
                                  int desc_on, int depth);
-        ///
-       void SimpleDocBookOnePar(std::ostream &, string & extra,
-                                LyXParagraph * par, int & desc_on,
-                                int depth);
 
        /// LinuxDoc.
        void push_tag(std::ostream & os, string const & tag,
@@ -413,7 +414,7 @@ public:
        ///
        class inset_iterator {
        public:
-               typedef input_iterator_tag iterator_category;
+               typedef std::input_iterator_tag iterator_category;
                typedef Inset value_type;
                typedef ptrdiff_t difference_type;
                typedef Inset * pointer;