diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-12 10:51:50 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-16 10:04:33 +0900 |
commit | 1c65be77cd84b454f3fe69f211849a712ad99ed0 (patch) | |
tree | f9309bc873f0f7838ee21373c32d5fd388da79d9 /kcontrol/crypto/certexport.cpp | |
parent | 55ba7bff2cd71ef2582b43c336afc55325b48a60 (diff) | |
download | tdebase-1c65be77.tar.gz tdebase-1c65be77.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit a4241b7911d2e0b36edfb02f616b8b282050c0ec)
Diffstat (limited to 'kcontrol/crypto/certexport.cpp')
-rw-r--r-- | kcontrol/crypto/certexport.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kcontrol/crypto/certexport.cpp b/kcontrol/crypto/certexport.cpp index 034d69897..d289f4aed 100644 --- a/kcontrol/crypto/certexport.cpp +++ b/kcontrol/crypto/certexport.cpp @@ -55,21 +55,21 @@ TQGridLayout *grid = new TQGridLayout(this, 9, 6, marginHint(), spacingHint()); _filename = new KLineEdit(this); grid->addMultiCellWidget(_filename, 6, 6, 0, 4); - connect(_filename, TQT_SIGNAL(textChanged(const TQString &)), this, TQT_SLOT(slotTextChanged(const TQString &))); - connect(_filename, TQT_SIGNAL(returnPressed()), this, TQT_SLOT(slotExport())); + connect(_filename, TQ_SIGNAL(textChanged(const TQString &)), this, TQ_SLOT(slotTextChanged(const TQString &))); + connect(_filename, TQ_SIGNAL(returnPressed()), this, TQ_SLOT(slotExport())); _choose = new TQPushButton("...", this); grid->addWidget(_choose, 6, 5); - connect(_choose, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotChoose())); + connect(_choose, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotChoose())); _export = new TQPushButton(i18n("&Export"), this); grid->addWidget(_export, 8, 4); - connect(_export, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotExport())); + connect(_export, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotExport())); _export->setEnabled(false); _cancel = new TQPushButton(i18n("&Cancel"), this); grid->addWidget(_cancel, 8, 5); - connect(_cancel, TQT_SIGNAL(clicked()), this, TQT_SLOT(reject())); + connect(_cancel, TQ_SIGNAL(clicked()), this, TQ_SLOT(reject())); } |