From: Richard Heck Date: Thu, 2 Dec 2010 22:11:52 +0000 (+0000) Subject: No need for two different containers here. X-Git-Tag: 2.0.0~1551 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ec1a541a6c30a3fe3bbe59e97516e4db5d4b43e9;p=lyx.git No need for two different containers here. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36670 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/output_xhtml.h b/src/output_xhtml.h index b2abc89d5b..94bdf0bd2b 100644 --- a/src/output_xhtml.h +++ b/src/output_xhtml.h @@ -17,7 +17,6 @@ #include "support/strfwd.h" #include -#include namespace lyx { @@ -136,13 +135,9 @@ private: /// odocstream & os_; /// - // int tab_; - /// - typedef std::deque TagDeque; - /// - typedef std::vector TagStack; + typedef std::deque 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_; ///