]> git.lyx.org Git - lyx.git/blobdiff - src/Floating.cpp
New XHTML math options. Format change.
[lyx.git] / src / Floating.cpp
index 6c85a8068e75973b5167ab4f0c8204fd430fcbb8..cf48630f69bac3ee80794f60bcbe0c58a4068231 100644 (file)
@@ -14,6 +14,7 @@
 
 #include "Floating.h"
 
+#include "support/debug.h"
 #include "support/lstrings.h"
 
 using namespace std;
@@ -29,12 +30,14 @@ Floating::Floating()
 Floating::Floating(string const & type, string const & placement,
                   string const & ext, string const & within,
                   string const & style, string const & name,
-                  string const & listName, string const & htmlTag,
-                  string const & htmlAttrib, string const & htmlStyle,
-                  bool needsfloat)
+                  string const & listName, std::string const & listCmd, 
+                        string const & refPrefix,
+                        string const & htmlTag, string const & htmlAttrib, 
+                        string const & htmlStyle, bool needsfloat)
        : floattype_(type), placement_(placement), ext_(ext), within_(within),
-         style_(style), name_(name), listname_(listName), needsfloatpkg_(needsfloat),
-    html_tag_(htmlTag), html_attrib_(htmlAttrib), html_style_(htmlStyle)
+         style_(style), name_(name), listname_(listName), listcommand_(listCmd),
+         refprefix_(refPrefix), needsfloatpkg_(needsfloat), html_tag_(htmlTag), 
+               html_attrib_(htmlAttrib), html_style_(htmlStyle)
 {}