[LyX/master] Remove dead code which is deprecated in Qt6
Jean-Marc Lasgouttes
lasgouttes at lyx.org
Fri Mar 3 08:46:24 UTC 2023
commit 88c1ed9e32f0f6b48c6fadf67c7db43b292c6684
Author: Jean-Marc Lasgouttes <lasgouttes at lyx.org>
Date: Fri Mar 3 10:45:46 2023 +0100
Remove dead code which is deprecated in Qt6
---
src/frontends/qt/GuiKeySymbol.cpp | 34 ----------------------------------
1 files changed, 0 insertions(+), 34 deletions(-)
diff --git a/src/frontends/qt/GuiKeySymbol.cpp b/src/frontends/qt/GuiKeySymbol.cpp
index 47cadea..083bc5f 100644
--- a/src/frontends/qt/GuiKeySymbol.cpp
+++ b/src/frontends/qt/GuiKeySymbol.cpp
@@ -25,7 +25,6 @@
#include <QKeyEvent>
#include <QKeySequence>
#include <QEvent>
-#include <QTextCodec>
#include <map>
#include <string>
@@ -692,39 +691,6 @@ static std::string const qkey_to_string(int lkey)
}
-#if 0
-static char encode(string const & encoding, QString const & str)
-{
- typedef map<string, QTextCodec *> EncodingMap;
- EncodingMap encoding_map;
-
- QTextCodec * codec = 0;
-
- EncodingMap::const_iterator cit = encoding_map.find(encoding);
- if (cit == encoding_map.end()) {
- LYXERR(Debug::KEY, "Unrecognised encoding '" << encoding << "'.");
- codec = encoding_map.find("")->second;
- } else {
- codec = cit->second;
- }
-
- if (!codec) {
- LYXERR(Debug::KEY, "No codec for encoding '" << encoding << "' found.");
- return 0;
- }
-
- LYXERR(Debug::KEY, "Using codec " << codec->name());
-
- if (!codec->canEncode(str)) {
- LYXERR(Debug::KEY, "Oof. Can't encode the text !");
- return 0;
- }
-
- return codec->fromUnicode(str).data()[0];
-}
-#endif
-
-
void setKeySymbol(KeySymbol * sym, QKeyEvent const * ev)
{
sym->setKey(ev->key());
More information about the lyx-cvs
mailing list