diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdecore/kstdaccel.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/kstdaccel.h')
-rw-r--r-- | kdecore/kstdaccel.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kdecore/kstdaccel.h b/kdecore/kstdaccel.h index 655d7e349..af102d063 100644 --- a/kdecore/kstdaccel.h +++ b/kdecore/kstdaccel.h @@ -20,7 +20,7 @@ #ifndef KSTDACCEL_H #define KSTDACCEL_H -#include <qstring.h> +#include <tqstring.h> #include <kshortcut.h> #include "kdelibs_export.h" @@ -94,21 +94,21 @@ namespace KStdAccel * @param id the id of the accelerator * @return the unique name of the accelerator */ - KDECORE_EXPORT QString name(StdAccel id); + KDECORE_EXPORT TQString name(StdAccel id); /** * Returns a localized label for user-visible display. * @param id the id of the accelerator * @return a localized label for the accelerator */ - KDECORE_EXPORT QString label(StdAccel id); + KDECORE_EXPORT TQString label(StdAccel id); /** * Returns an extended WhatsThis description for the given accelerator. * @param id the id of the accelerator * @return a localized description of the accelerator */ - KDECORE_EXPORT QString whatsThis(StdAccel id); + KDECORE_EXPORT TQString whatsThis(StdAccel id); /** * Return the StdAccel id of the standard accel action which @@ -452,12 +452,12 @@ namespace KStdAccel * @deprecated * Obsolete. Use name(). Returns a string representation for @p accel. */ - KDECORE_EXPORT QString action(StdAccel id) KDE_DEPRECATED; + KDECORE_EXPORT TQString action(StdAccel id) KDE_DEPRECATED; /** * @deprecated * Obsolete. Use desc(). Returns a localized description of @p accel. */ - KDECORE_EXPORT QString description(StdAccel id) KDE_DEPRECATED; + KDECORE_EXPORT TQString description(StdAccel id) KDE_DEPRECATED; /** * @deprecated * Obsolete. Use shortcut(). Returns the keybinding for @p accel. @@ -470,13 +470,13 @@ namespace KStdAccel KDECORE_EXPORT int defaultKey(StdAccel accel) KDE_DEPRECATED; /** - * @deprecated. Use KKey(const QKeyEvent*) == KKey(int). + * @deprecated. Use KKey(const TQKeyEvent*) == KKey(int). * * Compare the keys generated by the key event with * the value of the integer. * * If a modifier (Shift, Alt, Ctrl) key is present in - * QKeyEvent, its sum with the actual key value + * TQKeyEvent, its sum with the actual key value * is used for comparing it with the integer parameter. * * @param pEvent the key event to be used in the comparison. @@ -484,7 +484,7 @@ namespace KStdAccel * * @return true if the int value matches the integer representation of the QKeyEvent */ - KDECORE_EXPORT bool isEqual(const QKeyEvent* pEvent, int keyQt) KDE_DEPRECATED; + KDECORE_EXPORT bool isEqual(const TQKeyEvent* pEvent, int keyQt) KDE_DEPRECATED; #endif // !KDE_NO_COMPAT } |