From 209ac1e561619ff446be4b3411ed74e59fff168e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 28 Dec 2023 21:15:50 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- src/modules/addon/managementdialog.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/modules/addon') 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) -- cgit v1.2.1