Compilation fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6312 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Dekel Tsur 2003-02-28 19:57:04 +00:00
parent 669af60d37
commit dd5454171d
2 changed files with 5 additions and 3 deletions

View File

@ -8,12 +8,14 @@
* Full author contact details are available in file CREDITS * Full author contact details are available in file CREDITS
*/ */
#include "config.h"
#include "format.h" #include "format.h"
#include "lyxrc.h" #include "lyxrc.h"
#include "debug.h" #include "debug.h"
#include "lyx_cb.h" // for ShowMessage() ... to be removed? #include "lyx_cb.h" // for ShowMessage() ... to be removed?
#include "gettext.h" #include "gettext.h"
#include "LString.h" #include "LString.h"
#include "BoostFormat.h"
#include "frontends/Alert.h" //to be removed? #include "frontends/Alert.h" //to be removed?
@ -23,6 +25,7 @@
#include "support/lyxfunctional.h" #include "support/lyxfunctional.h"
namespace { namespace {
string const token_from("$$i"); string const token_from("$$i");
@ -129,9 +132,7 @@ void Formats::erase(string const & name)
void Formats::sort() void Formats::sort()
{ {
cout << "here" << endl;
std::sort(formatlist.begin(), formatlist.end()); 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))); QuoteName(OnlyFilename(filename)));
command = subst(command, token_path, QuoteName(OnlyPath(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); ShowMessage(buffer, _("Executing command:"), command);
Path p(OnlyPath(filename)); Path p(OnlyPath(filename));

View File

@ -8,6 +8,7 @@
* Full author contact details are available in file CREDITS * Full author contact details are available in file CREDITS
*/ */
#include "config.h"
#include "graph.h" #include "graph.h"
#include "format.h" #include "format.h"