summaryrefslogtreecommitdiffstats
path: root/src/urldlg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:51:28 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-31 22:24:21 +0900
commitf71f6c99da60331633888e77e6abe10456fb087e (patch)
treedbdfc32cb98f0b404487731f886860ab19b8b4eb /src/urldlg.cpp
parenta2bf0715f2265ba90a79fdb4410e856d4c4226ac (diff)
downloadtdesvn-f71f6c99.tar.gz
tdesvn-f71f6c99.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9ebb061777b4fed6107d056528ff19932d1c0379)
Diffstat (limited to 'src/urldlg.cpp')
-rw-r--r--src/urldlg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/urldlg.cpp b/src/urldlg.cpp
index 4a6571d..cace72b 100644
--- a/src/urldlg.cpp
+++ b/src/urldlg.cpp
@@ -71,10 +71,10 @@ void UrlDlg::init_dlg()
urlRequester_->setFocus();
KFile::Mode mode = static_cast<KFile::Mode>(KFile::ExistingOnly|KFile::Directory);
urlRequester_->setMode(mode);
- connect(urlRequester_->comboBox(),TQT_SIGNAL(textChanged(const TQString&)),TQT_SLOT(slotTextChanged(const TQString&)));
+ connect(urlRequester_->comboBox(),TQ_SIGNAL(textChanged(const TQString&)),TQ_SLOT(slotTextChanged(const TQString&)));
enableButtonOK( false );
enableButton( KDialogBase::User1, false );
- connect( this, TQT_SIGNAL(user1Clicked()), TQT_SLOT(slotClear()));
+ connect( this, TQ_SIGNAL(user1Clicked()), TQ_SLOT(slotClear()));
urlRequester_->adjustSize();
resize(TQSize(400,sizeHint().height()));
}