mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Compare commits
2 Commits
a7e8397a84
...
2c5f284f89
Author | SHA1 | Date | |
---|---|---|---|
|
2c5f284f89 | ||
|
615f035854 |
@ -460,8 +460,7 @@ int h(vector<docstring> const &)
|
||||
}
|
||||
|
||||
|
||||
docstring clientName =
|
||||
from_ascii(to_string(::getppid()) + ">" + to_string(::getpid()));
|
||||
docstring clientName;
|
||||
|
||||
int n(vector<docstring> const & arg)
|
||||
{
|
||||
@ -710,9 +709,12 @@ int LyXClientApp::run()
|
||||
|
||||
int main(int argc, char * argv[])
|
||||
{
|
||||
lyx::lyxerr.setStream(cerr);
|
||||
using namespace lyx;
|
||||
lyxerr.setStream(cerr);
|
||||
cmdline::clientName =
|
||||
from_ascii(to_string(::getppid()) + ">" + to_string(::getpid()));
|
||||
|
||||
lyx::LyXClientApp app(argc, argv);
|
||||
LyXClientApp app(argc, argv);
|
||||
return app.exec();
|
||||
}
|
||||
|
||||
|
@ -1514,7 +1514,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.
|
||||
|
@ -139,6 +139,10 @@ What's new
|
||||
- Fix a Python script, used to preview math expressions, that used a
|
||||
module that is removed in Python 3.13.
|
||||
|
||||
- Fix case where debug information may report all numbers as hexadecimal.
|
||||
|
||||
- Make sure that lyxclient name is initialized properly.
|
||||
|
||||
|
||||
* DOCUMENTATION AND LOCALIZATION
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user