From: Jean-Marc Lasgouttes Date: Mon, 9 Sep 2024 15:49:20 +0000 (+0200) Subject: Do not forget to reset stream after std::hex X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f4c02d670b60a56bc6fb4a49e201c7134af1011b;p=lyx.git Do not forget to reset stream after std::hex Spotted by Coverity scan. --- diff --git a/src/frontends/qt/GuiWorkArea.cpp b/src/frontends/qt/GuiWorkArea.cpp index bb616e7abb..c643a30192 100644 --- a/src/frontends/qt/GuiWorkArea.cpp +++ b/src/frontends/qt/GuiWorkArea.cpp @@ -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.