]> git.lyx.org Git - features.git/commitdiff
Remove dead code which is deprecated in Qt6
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 3 Mar 2023 09:45:46 +0000 (10:45 +0100)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 3 Mar 2023 09:48:51 +0000 (10:48 +0100)
src/frontends/qt/GuiKeySymbol.cpp

index 47cadeae57eff5605d732c314469a32d6ff8dbff..083bc5f8848cda5f3031e3ff614154c772ef77b7 100644 (file)
@@ -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());