]> git.lyx.org Git - lyx.git/blobdiff - src/format.C
Minimal fix needed to give Qt a label dialog again.
[lyx.git] / src / format.C
index 0cb80722ef03727186eb611cc4414e345579cd70..e3ad3f0503cd7cc7c61c4110e3a1a0cc4f9d24c1 100644 (file)
@@ -8,12 +8,14 @@
  * Full author contact details are available in file CREDITS
  */
 
+#include "config.h"
 #include "format.h"
 #include "lyxrc.h"
 #include "debug.h"
 #include "lyx_cb.h" // for ShowMessage() ... to be removed?
 #include "gettext.h"
 #include "LString.h"
+#include "BoostFormat.h"
 
 #include "frontends/Alert.h" //to be removed?
 
@@ -23,6 +25,7 @@
 #include "support/lyxfunctional.h"
 
 
+
 namespace {
 
 string const token_from("$$i");
@@ -40,11 +43,11 @@ bool operator<(Format const & a, Format const & b)
 }
 
 Format::Format(string const & n, string const & e, string const & p,
-       string const & s, string const & v): name_(n), 
-                                           extension_(e), 
-                                           prettyname_(p), 
+       string const & s, string const & v): name_(n),
+                                           extension_(e),
+                                           prettyname_(p),
                                            shortcut_(s),
-                                           viewer_(v) 
+                                           viewer_(v)
 {}
 
 
@@ -129,9 +132,7 @@ void Formats::erase(string const & name)
 
 void Formats::sort()
 {
-       cout << "here" << endl;
        std::sort(formatlist.begin(), formatlist.end());
-       cout << "and here " << formatlist.size() << endl;
 }
 
 
@@ -190,7 +191,7 @@ bool Formats::view(Buffer const * buffer, string const & filename,
                        QuoteName(OnlyFilename(filename)));
        command = subst(command, token_path, QuoteName(OnlyPath(filename)));
 
-       lyxerr[Debug::FILES] << "Executing command: " << command << endl;
+       lyxerr[Debug::FILES] << "Executing command: " << command << std::endl;
        ShowMessage(buffer, _("Executing command:"), command);
 
        Path p(OnlyPath(filename));