mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Compare commits
3 Commits
6687b34c07
...
e1efc70959
Author | SHA1 | Date | |
---|---|---|---|
|
e1efc70959 | ||
|
2ea95fa71b | ||
|
f4c02d670b |
@ -11,6 +11,12 @@ void doAssertWithCallstack(bool value)
|
||||
}
|
||||
|
||||
|
||||
void doAssertStatic(char const * expr, char const * file, long line)
|
||||
{
|
||||
__coverity_panic__();
|
||||
}
|
||||
|
||||
|
||||
// Tell coverity that this function always exits
|
||||
void doAppErr(char const * expr, char const * file, long line)
|
||||
{
|
||||
@ -23,4 +29,11 @@ void lyx_exit(int exit_code)
|
||||
__coverity_panic__();
|
||||
}
|
||||
|
||||
|
||||
void lyxbreaker(void const * data, const char * hint, int size)
|
||||
{
|
||||
__coverity_panic__();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -1510,7 +1510,7 @@ void GuiWorkArea::inputMethodEvent(QInputMethodEvent * e)
|
||||
|
||||
QVariant GuiWorkArea::inputMethodQuery(Qt::InputMethodQuery query) const
|
||||
{
|
||||
LYXERR(Debug::INFO, "incoming InputMethodQuery Value: 0x" << std::hex << query);
|
||||
LYXERR(Debug::INFO, "incoming InputMethodQuery Value: 0x" << std::hex << query << std::dec);
|
||||
switch (query) {
|
||||
// this is the CJK-specific composition window position and
|
||||
// the context menu position when the menu key is pressed.
|
||||
|
@ -129,6 +129,7 @@ static string const find_python_binary()
|
||||
}
|
||||
|
||||
// last chance: try the unversioned name
|
||||
// This case is very common on Windows.
|
||||
if (command.empty())
|
||||
command = python_call("python");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user