summaryrefslogtreecommitdiffstats
path: root/src/otrpreferences.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:19 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:32:19 -0600
commit9f51f088d1c9b4ad562f6e1107b2ccb3159b44ce (patch)
tree2bbbaf78ec36e8ee0af8111cc22276d736a632db /src/otrpreferences.cpp
parent90f25c94c32ef0fcb95fbf3c460161f3009d79bb (diff)
downloadkopete-otr-9f51f088d1c9b4ad562f6e1107b2ccb3159b44ce.tar.gz
kopete-otr-9f51f088d1c9b4ad562f6e1107b2ccb3159b44ce.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/otrpreferences.cpp')
-rw-r--r--src/otrpreferences.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/otrpreferences.cpp b/src/otrpreferences.cpp
index 65dca42..79b3ca7 100644
--- a/src/otrpreferences.cpp
+++ b/src/otrpreferences.cpp
@@ -18,7 +18,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-#include <tqlayout.h>
+#include <layout.h>
#include <tqlabel.h>
#include <tqmap.h>
#include <tqptrlist.h>
@@ -154,7 +154,7 @@ void OTRPreferences::verifyFingerprint(){
int doVerify = KMessageBox::questionYesNo(
this,
- i18n("Please contact %1 via another secure way and verify that the following Fingerprint is correct:").tqarg(preferencesDialog->tbFingerprints->text( preferencesDialog->tbFingerprints->currentRow(), 0 )) + "\n\n" + preferencesDialog->tbFingerprints->text( preferencesDialog->tbFingerprints->currentRow(), 3 ) + "\n\n" + i18n("Are you sure you want to trust this fingerprint?"), i18n("Verify fingerprint") );
+ i18n("Please contact %1 via another secure way and verify that the following Fingerprint is correct:").arg(preferencesDialog->tbFingerprints->text( preferencesDialog->tbFingerprints->currentRow(), 0 )) + "\n\n" + preferencesDialog->tbFingerprints->text( preferencesDialog->tbFingerprints->currentRow(), 3 ) + "\n\n" + i18n("Are you sure you want to trust this fingerprint?"), i18n("Verify fingerprint") );
if( doVerify == KMessageBox::Yes ){
@@ -188,9 +188,9 @@ void OTRPreferences::forgetFingerprint(){
}
}
-TQAlignTableItem :: TQAlignTableItem( TQTable *table, EditType editType, const TQString& text, int tqalignment )
+TQAlignTableItem :: TQAlignTableItem( TQTable *table, EditType editType, const TQString& text, int alignment )
: TQTableItem( table, editType, text ) {
- align = tqalignment;
+ align = alignment;
}