mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 05:25:26 +00:00
LyX::exec(): add an alert if sysdir not found.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35282 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0d54d0e79e
commit
22df620984
@ -286,7 +286,12 @@ int LyX::exec(int & argc, char * argv[])
|
|||||||
init_package(os::utf8_argv(0), string(), string(),
|
init_package(os::utf8_argv(0), string(), string(),
|
||||||
top_build_dir_is_one_level_up);
|
top_build_dir_is_one_level_up);
|
||||||
} catch (ExceptionMessage const & message) {
|
} catch (ExceptionMessage const & message) {
|
||||||
LYXERR(Debug::LOCALE, message.title_ + ", " + message.details_);
|
if (message.type_ == ErrorException) {
|
||||||
|
Alert::error(message.title_, message.details_);
|
||||||
|
lyx_exit(1);
|
||||||
|
} else if (message.type_ == WarningException) {
|
||||||
|
Alert::warning(message.title_, message.details_);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
locale_init();
|
locale_init();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user