]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/context.h
Add a Buffer::fully_loaded member function, returning true only when
[lyx.git] / src / tex2lyx / context.h
index 737c6d930cb597005c14d5b970aa44f84916d610..6bf72e066e564ddbaa171c3c44c755af6c27418a 100644 (file)
@@ -32,7 +32,7 @@ struct Context {
 
        // Output a \end_deeper if needed
        void check_end_deeper(std::ostream & os);
-       
+
        // dump content on stream (for debugging purpose), with
        // description \c desc.
        void dump(std::ostream &, std::string const & desc = "context") const;
@@ -54,7 +54,7 @@ struct Context {
        // we are handling a standard paragraph in an itemize-like
        // environment
        bool deeper_paragraph;
-       
+
        // The textclass of the document. Could actually be a global variable
        LyXTextClass const & textclass;
        // The layout of the current paragraph
@@ -62,6 +62,6 @@ struct Context {
        // The layout of the outer paragraph (for environment layouts)
        LyXLayout_ptr parent_layout;
 };
-       
+
 
 #endif