From: Dekel Tsur Date: Fri, 28 Feb 2003 19:57:04 +0000 (+0000) Subject: Compilation fix X-Git-Tag: 1.6.10~17390 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=dd5454171df7f0535486ad952d043e2ade66b17c;p=lyx.git Compilation fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6312 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/format.C b/src/format.C index 0cb80722ef..79cfdf78b6 100644 --- a/src/format.C +++ b/src/format.C @@ -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)); diff --git a/src/graph.C b/src/graph.C index ea1edc6470..c31861588a 100644 --- a/src/graph.C +++ b/src/graph.C @@ -8,6 +8,7 @@ * Full author contact details are available in file CREDITS */ +#include "config.h" #include "graph.h" #include "format.h"