summaryrefslogtreecommitdiffstats
path: root/src/pluginmanager-configuration.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-02 11:38:29 +0900
committerMichele Calgaro <[email protected]>2024-01-02 11:38:29 +0900
commit269551cf8e80ed83b626bb793f0f9f15b5f2809c (patch)
tree8acb279ab4af2e99e4db20e28ddd8fc1148a63f1 /src/pluginmanager-configuration.cpp
parent887adb8a4498cf2537919d863a2554e4be379249 (diff)
downloadtderadio-269551cf8e80ed83b626bb793f0f9f15b5f2809c.tar.gz
tderadio-269551cf8e80ed83b626bb793f0f9f15b5f2809c.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/pluginmanager-configuration.cpp')
-rw-r--r--src/pluginmanager-configuration.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pluginmanager-configuration.cpp b/src/pluginmanager-configuration.cpp
index 964b004..1e36005 100644
--- a/src/pluginmanager-configuration.cpp
+++ b/src/pluginmanager-configuration.cpp
@@ -37,11 +37,11 @@ PluginManagerConfiguration::PluginManagerConfiguration(TQWidget *parent, TDERadi
noticePluginLibrariesChanged();
noticePluginsChanged();
- TQObject::connect(btnAddLibrary, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotAddLibrary()));
- TQObject::connect(btnRemoveLibrary, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotRemoveLibrary()));
- TQObject::connect(btnNewPluginInstance, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotNewPluginInstance()));
- TQObject::connect(btnRemovePluginInstance, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotRemovePluginInstance()));
- TQObject::connect(cbShowProgressBar, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(slotSetDirty()));
+ TQObject::connect(btnAddLibrary, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotAddLibrary()));
+ TQObject::connect(btnRemoveLibrary, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotRemoveLibrary()));
+ TQObject::connect(btnNewPluginInstance, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotNewPluginInstance()));
+ TQObject::connect(btnRemovePluginInstance, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotRemovePluginInstance()));
+ TQObject::connect(cbShowProgressBar, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(slotSetDirty()));
slotCancel();
}