summaryrefslogtreecommitdiffstats
path: root/juk/keydialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'juk/keydialog.h')
-rw-r--r--juk/keydialog.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/juk/keydialog.h b/juk/keydialog.h
index 13d76d4f..13801ee1 100644
--- a/juk/keydialog.h
+++ b/juk/keydialog.h
@@ -20,8 +20,8 @@
#include <kglobalaccel.h>
#include <kkeydialog.h>
-#include <qhbuttongroup.h>
-#include <qwidgetstack.h>
+#include <tqhbuttongroup.h>
+#include <tqwidgetstack.h>
class KeyDialog : public KDialogBase
{
@@ -31,7 +31,7 @@ public:
/**
* Constructs a KeyDialog called @p name as a child of @p parent.
*/
- KeyDialog(KGlobalAccel *keys, KActionCollection *actionCollection, QWidget *parent = 0, const char* name = 0);
+ KeyDialog(KGlobalAccel *keys, KActionCollection *actionCollection, TQWidget *parent = 0, const char* name = 0);
/**
* Destructor. Deletes all resources used by a KeyDialog object.
@@ -43,14 +43,14 @@ public:
* accelerators and actions. It behaves essentially like the functions
* in KKeyDialog.
*/
- static int configure(KGlobalAccel *keys, KActionCollection *actionCollection, QWidget *parent = 0);
+ static int configure(KGlobalAccel *keys, KActionCollection *actionCollection, TQWidget *parent = 0);
/**
* This is a member function, provided to create a global accelerator with
* standard keys. It behaves like the function in KGlobalAccel.
*/
- static void insert(KGlobalAccel *keys, const QString &action, const QString &label,
- const QObject *objSlot, const char *methodSlot);
+ static void insert(KGlobalAccel *keys, const TQString &action, const TQString &label,
+ const TQObject *objSlot, const char *methodSlot);
private:
@@ -60,7 +60,7 @@ private:
enum KeyGroup { NoKeys = 0, StandardKeys = 1, MultimediaKeys = 2 };
struct KeyInfo {
- QString action;
+ TQString action;
KShortcut shortcut[3][2];
};
@@ -75,8 +75,8 @@ private:
KActionCollection *m_actionCollection;
KGlobalAccel *m_keys;
KKeyChooser *m_pKeyChooser;
- QHButtonGroup *m_group;
- QWidgetStack *m_widgetStack;
+ TQHButtonGroup *m_group;
+ TQWidgetStack *m_widgetStack;
static const KeyInfo keyInfo[];
static const uint keyInfoCount;