summaryrefslogtreecommitdiffstats
path: root/src/otrpreferences.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:39:03 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-07-31 02:02:55 +0200
commit84de8725823198f350717db34dda4c434a360e16 (patch)
treee6262cbc6b76b35ccb27dba710d0d193ed831fa4 /src/otrpreferences.cpp
parent01c140421fbb7e81e2a80c519b2a7b3c46a1cb4a (diff)
downloadkopete-otr-84de8725823198f350717db34dda4c434a360e16.tar.gz
kopete-otr-84de8725823198f350717db34dda4c434a360e16.zip
Remove additional unneeded tq method conversions
(cherry picked from commit b860acda13e142d73b93abc3444dcbd13f04d963)
Diffstat (limited to 'src/otrpreferences.cpp')
-rw-r--r--src/otrpreferences.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/otrpreferences.cpp b/src/otrpreferences.cpp
index 65dca42..98247f0 100644
--- a/src/otrpreferences.cpp
+++ b/src/otrpreferences.cpp
@@ -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;
}