mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 03:03:06 +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
|
// Dummy verbose support
|
||||||
bool verbose = false;
|
bool verbose = false;
|
||||||
|
|
||||||
|
struct App {
|
||||||
|
bool cancel_export;
|
||||||
|
};
|
||||||
|
|
||||||
|
App app;
|
||||||
|
App theApp() { return app; }
|
||||||
|
|
||||||
// Dummy LyXRC support
|
// Dummy LyXRC support
|
||||||
struct LyXRC {
|
struct LyXRC {
|
||||||
string icon_set;
|
string icon_set;
|
||||||
|
@ -49,6 +49,15 @@ using namespace lyx::support::os;
|
|||||||
|
|
||||||
namespace lyx {
|
namespace lyx {
|
||||||
|
|
||||||
|
|
||||||
|
struct App {
|
||||||
|
bool cancel_export;
|
||||||
|
};
|
||||||
|
|
||||||
|
App app;
|
||||||
|
App theApp() { return app; }
|
||||||
|
|
||||||
|
|
||||||
string const trimSpaceAndEol(string const & a)
|
string const trimSpaceAndEol(string const & a)
|
||||||
{
|
{
|
||||||
return trim(a, " \t\n\r");
|
return trim(a, " \t\n\r");
|
||||||
|
Loading…
Reference in New Issue
Block a user