summaryrefslogtreecommitdiffstats
path: root/apps/ktorrent/fileselectdlg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-01 17:47:34 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-01 17:47:34 +0900
commit27fd576acbb8b9453dadd7d1ae949396eef8fc12 (patch)
treeee739b602572a496ce9ca24318cf1b371dbd7174 /apps/ktorrent/fileselectdlg.cpp
parent09d3e49e01a4b798762fd505810b092fd0c77b47 (diff)
downloadktorrent-27fd576acbb8b9453dadd7d1ae949396eef8fc12.tar.gz
ktorrent-27fd576acbb8b9453dadd7d1ae949396eef8fc12.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'apps/ktorrent/fileselectdlg.cpp')
-rw-r--r--apps/ktorrent/fileselectdlg.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/ktorrent/fileselectdlg.cpp b/apps/ktorrent/fileselectdlg.cpp
index 1dc1f1f..a6dec27 100644
--- a/apps/ktorrent/fileselectdlg.cpp
+++ b/apps/ktorrent/fileselectdlg.cpp
@@ -53,12 +53,12 @@ FileSelectDlg::FileSelectDlg(GroupManager* gm, bool* user, bool* start, TQWidget
: FileSelectDlgBase(parent, name, modal, fl), m_gman(gm), m_user(user), m_start(start)
{
root = 0;
- connect(m_select_all, TQT_SIGNAL(clicked()), this, TQT_SLOT(selectAll()));
- connect(m_select_none, TQT_SIGNAL(clicked()), this, TQT_SLOT(selectNone()));
- connect(m_invert_selection, TQT_SIGNAL(clicked()), this, TQT_SLOT(invertSelection()));
- connect(m_ok, TQT_SIGNAL(clicked()), this, TQT_SLOT(accept()));
- connect(m_cancel, TQT_SIGNAL(clicked()), this, TQT_SLOT(reject()));
- connect(m_downloadLocation, TQT_SIGNAL(textChanged (const TQString &)), this, TQT_SLOT(updateSizeLabels()));
+ connect(m_select_all, TQ_SIGNAL(clicked()), this, TQ_SLOT(selectAll()));
+ connect(m_select_none, TQ_SIGNAL(clicked()), this, TQ_SLOT(selectNone()));
+ connect(m_invert_selection, TQ_SIGNAL(clicked()), this, TQ_SLOT(invertSelection()));
+ connect(m_ok, TQ_SIGNAL(clicked()), this, TQ_SLOT(accept()));
+ connect(m_cancel, TQ_SIGNAL(clicked()), this, TQ_SLOT(reject()));
+ connect(m_downloadLocation, TQ_SIGNAL(textChanged (const TQString &)), this, TQ_SLOT(updateSizeLabels()));
m_downloadLocation->setMode(KFile::Directory);
}