diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
commit | 560378aaca1784ba19806a0414a32b20c744de39 (patch) | |
tree | ce0dfd7c3febf2a1adc7603d1019a8be2083c415 /kdecore/kaccelaction.h | |
parent | d4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff) | |
download | tdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip |
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/kaccelaction.h')
-rw-r--r-- | kdecore/kaccelaction.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kdecore/kaccelaction.h b/kdecore/kaccelaction.h index d55e4517c..934c694b4 100644 --- a/kdecore/kaccelaction.h +++ b/kdecore/kaccelaction.h @@ -60,7 +60,7 @@ class KConfigBase; * 1) KKey = "Meta+X" * 1) Meta+X * 2) KKey = "Asterisk" - * 1) Shift+8 (English layout) + * 1) Shift+8 (English tqlayout) * 2) Keypad_Asterisk * \endcode * @short An accelerator action @@ -296,12 +296,12 @@ class KDECORE_EXPORT KAccelAction void clearShortcut(); /** - * Checks whether the action's shortcut contains the given key sequence. + * Checks whether the action's shortcut tqcontains the given key sequence. * @param keySeq the key sequence to check - * @return true if the shortcut contains the given sequence - * @see KShortcut::contains() + * @return true if the shortcut tqcontains the given sequence + * @see KShortcut::tqcontains() */ - bool contains( const KKeySequence &keySeq ); + bool tqcontains( const KKeySequence &keySeq ); /** * Returns the string representation of the action's shortcut. @@ -333,8 +333,8 @@ class KDECORE_EXPORT KAccelAction m_sLabel /**< Label of accel. User-visible. */, m_sWhatsThis /**< WhatsThis help for accel. User-visible. */; KShortcut m_cut /**< Shortcut actually assigned. */; - KShortcut m_cutDefault3 /**< Default shortcut in 3-modifier layout */, - m_cutDefault4 /**< Default shortcur in 4-modifier layout */; + KShortcut m_cutDefault3 /**< Default shortcut in 3-modifier tqlayout */, + m_cutDefault4 /**< Default shortcur in 4-modifier tqlayout */; const TQObject* m_pObjSlot /**< Object we will send signals to. */; const char* m_psMethodSlot /**< Slot we send signals to, in m_pObjSlot */; bool m_bConfigurable /**< Can this accel be configured by the user? */, @@ -405,7 +405,7 @@ class KDECORE_EXPORT KAccelActions /** * Updates the shortcuts of all actions in this object * with the shortcuts from the given object. - * @param shortcuts the collection that contains the new + * @param shortcuts the collection that tqcontains the new * shortcuts */ void updateShortcuts( KAccelActions &shortcuts ); |