diff options
author | Sacha <xsacha@gmail.com> | 2014-08-19 13:34:00 +0200 |
---|---|---|
committer | Sacha <xsacha@gmail.com> | 2014-08-19 13:34:00 +0200 |
commit | 90f23020f53c94dab800f7348877aae483974512 (patch) | |
tree | dffeef80b636b9f8baee1f70820dc9536f7d8567 /externals/qhexedit/qhexedit_p.cpp | |
parent | Merge pull request #55 from lioncash/string (diff) | |
download | yuzu-90f23020f53c94dab800f7348877aae483974512.tar yuzu-90f23020f53c94dab800f7348877aae483974512.tar.gz yuzu-90f23020f53c94dab800f7348877aae483974512.tar.bz2 yuzu-90f23020f53c94dab800f7348877aae483974512.tar.lz yuzu-90f23020f53c94dab800f7348877aae483974512.tar.xz yuzu-90f23020f53c94dab800f7348877aae483974512.tar.zst yuzu-90f23020f53c94dab800f7348877aae483974512.zip |
Diffstat (limited to 'externals/qhexedit/qhexedit_p.cpp')
-rw-r--r-- | externals/qhexedit/qhexedit_p.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/externals/qhexedit/qhexedit_p.cpp b/externals/qhexedit/qhexedit_p.cpp index c16f4ce4d..2a6885de8 100644 --- a/externals/qhexedit/qhexedit_p.cpp +++ b/externals/qhexedit/qhexedit_p.cpp @@ -1,5 +1,3 @@ -#include <QtGui> - #include "qhexedit_p.h" #include "commands.h" @@ -437,7 +435,7 @@ void QHexEditPrivate::keyPressEvent(QKeyEvent *event) if (!_readOnly) { /* Hex input */ - int key = int(event->text()[0].toAscii()); + int key = int(event->text()[0].toLatin1()); if ((key>='0' && key<='9') || (key>='a' && key <= 'f')) { if (getSelectionBegin() != getSelectionEnd()) |