diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 21:15:50 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-01 18:03:34 +0900 |
commit | 209ac1e561619ff446be4b3411ed74e59fff168e (patch) | |
tree | 83b384cf0c4dfb918b3a4c39b4333f33e0f2f387 /src/modules/addon | |
parent | 44846083311d49d75e8376326d29f7f34e1dae52 (diff) | |
download | kvirc-209ac1e561619ff446be4b3411ed74e59fff168e.tar.gz kvirc-209ac1e561619ff446be4b3411ed74e59fff168e.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/addon')
-rw-r--r-- | src/modules/addon/managementdialog.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/addon/managementdialog.cpp b/src/modules/addon/managementdialog.cpp index f89d9bfe..a19022a2 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) |