diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-16 02:40:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-16 02:40:35 +0000 |
commit | bab40890696ec68c337dc290880423a0602b83c7 (patch) | |
tree | 6ba03f720b1fa88235ba339e7aedb4455430357e /khtml/xml/dom2_eventsimpl.h | |
parent | f7e71d47719ab6094cf4a9fafffa5ea351973522 (diff) | |
download | tdelibs-bab40890696ec68c337dc290880423a0602b83c7.tar.gz tdelibs-bab40890696ec68c337dc290880423a0602b83c7.zip |
Finished remaining porting to new TQt API
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1214736 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khtml/xml/dom2_eventsimpl.h')
-rw-r--r-- | khtml/xml/dom2_eventsimpl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/khtml/xml/dom2_eventsimpl.h b/khtml/xml/dom2_eventsimpl.h index 1e7a37a16..fab2225e5 100644 --- a/khtml/xml/dom2_eventsimpl.h +++ b/khtml/xml/dom2_eventsimpl.h @@ -317,10 +317,10 @@ public: unsigned long virtKeyVal, unsigned long modifiers); - bool ctrlKey() const { return m_modifier & Qt::ControlButton; } - bool shiftKey() const { return m_modifier & Qt::ShiftButton; } - bool altKey() const { return m_modifier & Qt::AltButton; } - bool metaKey() const { return m_modifier & Qt::MetaButton; } + bool ctrlKey() const { return m_modifier & TQt::ControlButton; } + bool shiftKey() const { return m_modifier & TQt::ShiftButton; } + bool altKey() const { return m_modifier & TQt::AltButton; } + bool metaKey() const { return m_modifier & TQt::MetaButton; } bool inputGenerated() const { return m_virtKeyVal == 0; } unsigned long keyVal() const { return m_keyVal; } |