]> git.lyx.org Git - lyx.git/commitdiff
No need for two different containers here.
authorRichard Heck <rgheck@comcast.net>
Thu, 2 Dec 2010 22:11:52 +0000 (22:11 +0000)
committerRichard Heck <rgheck@comcast.net>
Thu, 2 Dec 2010 22:11:52 +0000 (22:11 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36670 a592a061-630c-0410-9148-cb99ea01b6c8

src/output_xhtml.h

index b2abc89d5bd83f5a5edc216e7258f84d9356271e..94bdf0bd2b7f643fbf18802175444dfa6550323b 100644 (file)
@@ -17,7 +17,6 @@
 #include "support/strfwd.h"
 
 #include <deque>
-#include <vector>
 
 namespace lyx {
 
@@ -136,13 +135,9 @@ private:
        ///
        odocstream & os_;
        ///
-       // int tab_;
-       ///
-       typedef std::deque<html::StartTag> TagDeque;
-       ///
-       typedef std::vector<html::StartTag> TagStack;
+       typedef std::deque<html::StartTag> TagStack;
        /// holds start tags until we know there is content in them.
-       TagDeque pending_tags_;
+       TagStack pending_tags_;
        /// remembers the history, so we can make sure we nest properly.
        TagStack tag_stack_;
        ///