diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 21:15:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-01 17:44:24 +0900 |
commit | e14ad764e72a351b46a7eb027da5c9eb476f532c (patch) | |
tree | 4574f0268338b23a6f5833e9d5543e9e4070658a /src/otrpreferences.cpp | |
parent | edea0d8d7d83c5d04c98b6addc34f01a4cafc509 (diff) | |
download | kopete-otr-e14ad764e72a351b46a7eb027da5c9eb476f532c.tar.gz kopete-otr-e14ad764e72a351b46a7eb027da5c9eb476f532c.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 2a35cd2f709b2d6418b70f3ef999f204d1c48dc0)
Diffstat (limited to 'src/otrpreferences.cpp')
-rw-r--r-- | src/otrpreferences.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/otrpreferences.cpp b/src/otrpreferences.cpp index b88c602..c0d1048 100644 --- a/src/otrpreferences.cpp +++ b/src/otrpreferences.cpp @@ -76,12 +76,12 @@ OTRPreferences::OTRPreferences(TQWidget *parent, const char* /*name*/, const TQS otrlConfInterface = new OtrlConfInterface( preferencesDialog ); - connect( preferencesDialog->btGenFingerprint, TQT_SIGNAL(clicked()), TQT_SLOT(generateFingerprint())); - connect( preferencesDialog->cbKeys, TQT_SIGNAL(activated(int)), TQT_SLOT(showPrivFingerprint(int))); - connect( preferencesDialog->btVerify, TQT_SIGNAL(clicked()), TQT_SLOT(verifyFingerprint())); - connect( preferencesDialog->twSettings, TQT_SIGNAL(currentChanged(TQWidget *)), TQT_SLOT(fillFingerprints())); - connect( preferencesDialog->tbFingerprints, TQT_SIGNAL(currentChanged(int, int)), TQT_SLOT(updateButtons(int, int))); - connect( preferencesDialog->btForget, TQT_SIGNAL( clicked() ), TQT_SLOT( forgetFingerprint() ) ); + connect( preferencesDialog->btGenFingerprint, TQ_SIGNAL(clicked()), TQ_SLOT(generateFingerprint())); + connect( preferencesDialog->cbKeys, TQ_SIGNAL(activated(int)), TQ_SLOT(showPrivFingerprint(int))); + connect( preferencesDialog->btVerify, TQ_SIGNAL(clicked()), TQ_SLOT(verifyFingerprint())); + connect( preferencesDialog->twSettings, TQ_SIGNAL(currentChanged(TQWidget *)), TQ_SLOT(fillFingerprints())); + connect( preferencesDialog->tbFingerprints, TQ_SIGNAL(currentChanged(int, int)), TQ_SLOT(updateButtons(int, int))); + connect( preferencesDialog->btForget, TQ_SIGNAL( clicked() ), TQ_SLOT( forgetFingerprint() ) ); int index = 0; int accountnr = 0; |