mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +00:00
Compilation fix
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6312 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
669af60d37
commit
dd5454171d
@ -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));
|
||||
|
@ -8,6 +8,7 @@
|
||||
* Full author contact details are available in file CREDITS
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "graph.h"
|
||||
#include "format.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user