]> git.lyx.org Git - lyx.git/blobdiff - src/buffer.h
fix the <...> delimiters
[lyx.git] / src / buffer.h
index 4da4b29a3aca63ad493ee75496e1d8bc1fa5687e..d46db48035cf00ac64b241f75f931f6f2907a4b2 100644 (file)
 #include "LString.h"
 #include "undo.h"
 #include "support/limited_stack.h"
+
 #include "lyxvc.h"
 #include "bufferparams.h"
 #include "texrow.h"
 #include "paragraph.h"
 
 #include <boost/shared_ptr.hpp>
+
 class BufferView;
 class LyXRC;
 class TeXErrors;
@@ -180,10 +180,10 @@ public:
        void makeDocBookFile(string const & filename,
                             bool nice, bool only_body = false);
        /// Open SGML/XML tag.
-       void sgmlOpenTag(std::ostream & os, Paragraph::depth_type depth,
+       int sgmlOpenTag(std::ostream & os, Paragraph::depth_type depth, bool mixcont,
                string const & latexname) const;
        /// Closes SGML/XML tag.
-       void sgmlCloseTag(std::ostream & os, Paragraph::depth_type depth,
+       int sgmlCloseTag(std::ostream & os, Paragraph::depth_type depth, bool mixcont,
                string const & latexname) const;
        ///
        void sgmlError(Paragraph * par, int pos, string const & message) const;
@@ -302,10 +302,10 @@ public:
 
        /// Does this mean that this is buffer local?
        limited_stack<boost::shared_ptr<Undo> > undostack;
-       
-       /// Does this mean that this is buffer local? 
+
+       /// Does this mean that this is buffer local?
        limited_stack<boost::shared_ptr<Undo> > redostack;
-       
+
        ///
        BufferParams params;