summaryrefslogtreecommitdiffstats
path: root/src/gvcore/deletedialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-30 16:28:59 +0900
committerMichele Calgaro <[email protected]>2023-12-31 22:26:22 +0900
commitf476b77d1dda2e0e45cdf065b1907215c90fccd6 (patch)
treedec65915640fe8ca8f67f9c490575d939b89d5df /src/gvcore/deletedialog.cpp
parent5eb453b778dba31ee1c5956ca9c9d6483c1cd620 (diff)
downloadgwenview-f476b77d1dda2e0e45cdf065b1907215c90fccd6.tar.gz
gwenview-f476b77d1dda2e0e45cdf065b1907215c90fccd6.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 97ea83f8b23cc80320874b97b671c736a83c378a)
Diffstat (limited to 'src/gvcore/deletedialog.cpp')
-rw-r--r--src/gvcore/deletedialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gvcore/deletedialog.cpp b/src/gvcore/deletedialog.cpp
index 3bedf12..7cf30e5 100644
--- a/src/gvcore/deletedialog.cpp
+++ b/src/gvcore/deletedialog.cpp
@@ -55,7 +55,7 @@ DeleteDialog::DeleteDialog(TQWidget *parent, const char *name) :
bool deleteInstead = ! FileOperationConfig::deleteToTrash();
m_widget->ddShouldDelete->setChecked(deleteInstead);
- connect(m_widget->ddShouldDelete, TQT_SIGNAL(toggled(bool)), TQT_SLOT(updateUI()));
+ connect(m_widget->ddShouldDelete, TQ_SIGNAL(toggled(bool)), TQ_SLOT(updateUI()));
}
void DeleteDialog::setURLList(const KURL::List &files)