diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-16 01:55:17 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-16 01:55:17 +0000 |
commit | 6fcedc9dbb0277f842656507ffa76d5360724d45 (patch) | |
tree | c735a834778db2645243504571ab8dfd03521558 /ktouch | |
parent | 2f78efe39ad3b13a65a26e70ca369acd6ff23f17 (diff) | |
download | tdeedu-6fcedc9dbb0277f842656507ffa76d5360724d45.tar.gz tdeedu-6fcedc9dbb0277f842656507ffa76d5360724d45.zip |
Fix kdeedu Qt3 FTBFS
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1236949 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ktouch')
-rw-r--r-- | ktouch/src/ktouch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ktouch/src/ktouch.cpp b/ktouch/src/ktouch.cpp index 4480b80c..2267725f 100644 --- a/ktouch/src/ktouch.cpp +++ b/ktouch/src/ktouch.cpp @@ -177,7 +177,7 @@ void KTouch::keyPressEvent(TQKeyEvent *keyEvent) { m_trainer->continueTraining(); } if (keyEvent->text().length() > 1) { - kdDebug() << "[KTouch::keyPressEvent] text = '" << keyEvent->text().data() << "'" << endl; + kdDebug() << "[KTouch::keyPressEvent] text = '" << keyEvent->text().ascii() << "'" << endl; } TQChar key = keyEvent->text().at(0); // get first tqunicode character // HACK : manually filter out known dead keys |