]> git.lyx.org Git - features.git/commitdiff
Compilation fix
authorDekel Tsur <dekelts@tau.ac.il>
Fri, 28 Feb 2003 19:57:04 +0000 (19:57 +0000)
committerDekel Tsur <dekelts@tau.ac.il>
Fri, 28 Feb 2003 19:57:04 +0000 (19:57 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6312 a592a061-630c-0410-9148-cb99ea01b6c8

src/format.C
src/graph.C

index 0cb80722ef03727186eb611cc4414e345579cd70..79cfdf78b67f378c1312fa4bdaecdae992096c2e 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");
@@ -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));
index ea1edc64700fede5e8f01f9d832cb5c53f82fe49..c31861588af569f882e4ca5cddb73e407bd28ca1 100644 (file)
@@ -8,6 +8,7 @@
  * Full author contact details are available in file CREDITS
  */
 
+#include "config.h"
 #include "graph.h"
 #include "format.h"