From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- libkdepim/ssllabel.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'libkdepim/ssllabel.cpp') diff --git a/libkdepim/ssllabel.cpp b/libkdepim/ssllabel.cpp index c606928da..3ad982390 100644 --- a/libkdepim/ssllabel.cpp +++ b/libkdepim/ssllabel.cpp @@ -37,12 +37,12 @@ #include #include -#include +#include namespace KPIM { -SSLLabel::SSLLabel( QWidget* parent ) - : QLabel( parent ) +SSLLabel::SSLLabel( TQWidget* parent ) + : TQLabel( parent ) { setState( Done ); } @@ -65,24 +65,24 @@ void SSLLabel::setState( State state ) { switch( state ) { case Encrypted: - QToolTip::remove( this ); - QToolTip::add( this, i18n("Connection is encrypted") ); + TQToolTip::remove( this ); + TQToolTip::add( this, i18n("Connection is encrypted") ); setPixmap( SmallIcon( "encrypted", KGlobal::instance() ) ); show(); break; case Unencrypted: - QToolTip::remove( this ); - QToolTip::add( this, i18n("Connection is unencrypted") ); + TQToolTip::remove( this ); + TQToolTip::add( this, i18n("Connection is unencrypted") ); setPixmap( SmallIcon( "decrypted" ) ); show(); break; case Done: - QToolTip::remove( this ); + TQToolTip::remove( this ); hide(); break; case Clean: default: - QToolTip::remove( this ); + TQToolTip::remove( this ); hide(); //we return because we do not save the state as the only //action we want to perform is to hide ourself -- cgit v1.2.1