summaryrefslogtreecommitdiffstats
path: root/src/modules/addon/managementdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/addon/managementdialog.cpp')
-rw-r--r--src/modules/addon/managementdialog.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/addon/managementdialog.cpp b/src/modules/addon/managementdialog.cpp
index f89d9bf..a19022a 100644
--- a/src/modules/addon/managementdialog.cpp
+++ b/src/modules/addon/managementdialog.cpp
@@ -188,17 +188,17 @@ KviScriptManagementDialog::KviScriptManagementDialog(TQWidget * p)
g->addMultiCellWidget(m_pListView,0,10,1,1);
m_pConfigureButton = new TQPushButton(__tr2qs("Configure"),this);
- connect(m_pConfigureButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(configureScript()));
+ connect(m_pConfigureButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(configureScript()));
g->addWidget(m_pConfigureButton,0,2);
m_pHelpButton = new TQPushButton(__tr2qs("Show Help"),this);
- connect(m_pHelpButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(showScriptHelp()));
+ connect(m_pHelpButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(showScriptHelp()));
g->addWidget(m_pHelpButton,1,2);
g->addRowSpacing(2,40);
m_pUninstallButton = new TQPushButton(__tr2qs("Uninstall"),this);
- connect(m_pUninstallButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(uninstallScript()));
+ connect(m_pUninstallButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(uninstallScript()));
g->addWidget(m_pUninstallButton,3,2);
g->addRowSpacing(4,15);
@@ -210,15 +210,15 @@ KviScriptManagementDialog::KviScriptManagementDialog(TQWidget * p)
g->addRowSpacing(6,15);
m_pInstallButton = new TQPushButton(__tr2qs("Install Addon..."),this);
- connect(m_pInstallButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(installScript()));
+ connect(m_pInstallButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(installScript()));
g->addWidget(m_pInstallButton,7,2);
m_pGetScriptsButton = new TQPushButton(__tr2qs("More Addons..."),this);
- connect(m_pGetScriptsButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(getMoreScripts()));
+ connect(m_pGetScriptsButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(getMoreScripts()));
g->addWidget(m_pGetScriptsButton,8,2);
TQPushButton * b = new TQPushButton(__tr2qs("Close"),this);
- connect(b,TQT_SIGNAL(clicked()),this,TQT_SLOT(closeClicked()));
+ connect(b,TQ_SIGNAL(clicked()),this,TQ_SLOT(closeClicked()));
g->addWidget(b,10,2);
g->setRowStretch(9,1);
@@ -227,7 +227,7 @@ KviScriptManagementDialog::KviScriptManagementDialog(TQWidget * p)
fillListView();
currentChanged(0);
- connect(m_pListView,TQT_SIGNAL(currentChanged(KviTalListViewItem *)),this,TQT_SLOT(currentChanged(KviTalListViewItem *)));
+ connect(m_pListView,TQ_SIGNAL(currentChanged(KviTalListViewItem *)),this,TQ_SLOT(currentChanged(KviTalListViewItem *)));
//currentToolBarChanged();
if(g_rectManagementDialogGeometry.y() < 5)