summaryrefslogtreecommitdiffstats
path: root/khotkeys/kcontrol/gestures_settings_tab.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /khotkeys/kcontrol/gestures_settings_tab.cpp
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khotkeys/kcontrol/gestures_settings_tab.cpp')
-rw-r--r--khotkeys/kcontrol/gestures_settings_tab.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/khotkeys/kcontrol/gestures_settings_tab.cpp b/khotkeys/kcontrol/gestures_settings_tab.cpp
index e3c71c66a..2b5a8ff42 100644
--- a/khotkeys/kcontrol/gestures_settings_tab.cpp
+++ b/khotkeys/kcontrol/gestures_settings_tab.cpp
@@ -17,9 +17,9 @@
#include "gestures_settings_tab.h"
#include <klocale.h>
-#include <qcombobox.h>
+#include <tqcombobox.h>
#include <knuminput.h>
-#include <qcheckbox.h>
+#include <tqcheckbox.h>
#include "kcmkhotkeys.h"
#include "windowdef_list_widget.h"
@@ -27,7 +27,7 @@
namespace KHotKeys
{
-Gestures_settings_tab::Gestures_settings_tab( QWidget* parent_P, const char* name_P )
+Gestures_settings_tab::Gestures_settings_tab( TQWidget* parent_P, const char* name_P )
: Gestures_settings_tab_ui( parent_P, name_P )
{
mouse_button_combo->insertItem( i18n( "Button 2 (middle)" ), 0 );
@@ -39,12 +39,12 @@ Gestures_settings_tab::Gestures_settings_tab( QWidget* parent_P, const char* nam
mouse_button_combo->insertItem( i18n( "Button 8 (if available)" ), 6 );
mouse_button_combo->insertItem( i18n( "Button 9 (if available)" ), 7 );
// KHotKeys::Module::changed()
- connect( mouse_gestures_globally, SIGNAL( clicked()),
- module, SLOT( changed()));
- connect( mouse_button_combo, SIGNAL( activated( int )),
- module, SLOT( changed()));
- connect( timeout_input, SIGNAL( valueChanged( int )),
- module, SLOT( changed()));
+ connect( mouse_gestures_globally, TQT_SIGNAL( clicked()),
+ module, TQT_SLOT( changed()));
+ connect( mouse_button_combo, TQT_SIGNAL( activated( int )),
+ module, TQT_SLOT( changed()));
+ connect( timeout_input, TQT_SIGNAL( valueChanged( int )),
+ module, TQT_SLOT( changed()));
}
void Gestures_settings_tab::read_data()