]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
Correct Right Arrow key processing in Modules list
[lyx.git] / src / OutputParams.h
index 9b4fdbf0006bcdd2bfc9fe9e0276995cd83edace..31a705982e1b5962d1ca6a5d0547c78a28bea2fa 100644 (file)
@@ -16,7 +16,7 @@
 #include "Changes.h"
 
 #include <memory>
-#include <unordered_set>
+#include <set>
 
 
 namespace lyx {
@@ -361,7 +361,7 @@ public:
        bool docbook_force_pars;
 
        /// Anchors that should not be output (LyX-side identifier, not DocBook-side).
-       std::unordered_set<docstring> docbook_anchors_to_ignore;
+       std::set<docstring> docbook_anchors_to_ignore;
 
        /// Is the current context a float (such as a table or a figure)?
        bool docbook_in_float;
@@ -369,6 +369,9 @@ public:
        /// Is the current context a listing?
        bool docbook_in_listing;
 
+       /// Is the current context a table?
+       bool docbook_in_table;
+
        /// Are we generating this material for inclusion in a TOC-like entity?
        bool for_toc;