mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 05:25:26 +00:00
Fix linking errors. Someone else will have to tell me if this
is the best way to do it.
This commit is contained in:
parent
76214e6012
commit
f1df7e478d
@ -69,6 +69,13 @@ namespace lyx {
|
||||
// Dummy verbose support
|
||||
bool verbose = false;
|
||||
|
||||
struct App {
|
||||
bool cancel_export;
|
||||
};
|
||||
|
||||
App app;
|
||||
App theApp() { return app; }
|
||||
|
||||
// Dummy LyXRC support
|
||||
struct LyXRC {
|
||||
string icon_set;
|
||||
|
@ -49,6 +49,15 @@ using namespace lyx::support::os;
|
||||
|
||||
namespace lyx {
|
||||
|
||||
|
||||
struct App {
|
||||
bool cancel_export;
|
||||
};
|
||||
|
||||
App app;
|
||||
App theApp() { return app; }
|
||||
|
||||
|
||||
string const trimSpaceAndEol(string const & a)
|
||||
{
|
||||
return trim(a, " \t\n\r");
|
||||
|
Loading…
Reference in New Issue
Block a user