diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:20:30 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:20:30 +0000 |
commit | 28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c (patch) | |
tree | a2f011f22aa31d0839c6e2118501b7a6d2f2ae96 /kmouth/phraseedit.cpp | |
parent | 0285229d858c8f03cde7354c679a752598cf4515 (diff) | |
download | tdeaccessibility-28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c.tar.gz tdeaccessibility-28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaccessibility@1157633 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmouth/phraseedit.cpp')
-rw-r--r-- | kmouth/phraseedit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmouth/phraseedit.cpp b/kmouth/phraseedit.cpp index 0f2e319..000a1f5 100644 --- a/kmouth/phraseedit.cpp +++ b/kmouth/phraseedit.cpp @@ -17,14 +17,14 @@ #include "phraseedit.h" -PhraseEdit::PhraseEdit(const QString &string, QWidget *parent) +PhraseEdit::PhraseEdit(const TQString &string, TQWidget *parent) : KLineEdit (string, parent) { } PhraseEdit::~PhraseEdit() { } -void PhraseEdit::keyPressEvent (QKeyEvent *e) { +void PhraseEdit::keyPressEvent (TQKeyEvent *e) { if ((e->state() & Qt::KeyButtonMask) == Qt::ControlButton) { if (e->key() == Qt::Key_C) { if (!this->hasSelectedText()) { |