diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:48:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:48:06 +0000 |
commit | 47c8a359c5276062c4bc17f0e82410f29081b502 (patch) | |
tree | 2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/protocols/msn/webcam/msnwebcamdialog.cpp | |
parent | 6f82532777a35e0e60bbd2b290b2e93e646f349b (diff) | |
download | tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/msn/webcam/msnwebcamdialog.cpp')
-rw-r--r-- | kopete/protocols/msn/webcam/msnwebcamdialog.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kopete/protocols/msn/webcam/msnwebcamdialog.cpp b/kopete/protocols/msn/webcam/msnwebcamdialog.cpp index 092135f0..b0540cbb 100644 --- a/kopete/protocols/msn/webcam/msnwebcamdialog.cpp +++ b/kopete/protocols/msn/webcam/msnwebcamdialog.cpp @@ -19,31 +19,31 @@ #include "msnwebcamdialog.h" -#include <qframe.h> -#include <qobject.h> -#include <qwidget.h> +#include <tqframe.h> +#include <tqobject.h> +#include <tqwidget.h> #include <kdebug.h> #include <klocale.h> -MSNWebcamDialog::MSNWebcamDialog( const QString& contact, QWidget * parent, const char * name ) +MSNWebcamDialog::MSNWebcamDialog( const TQString& contact, TQWidget * parent, const char * name ) : KDialogBase( KDialogBase::Plain, i18n( "Webcam for %1" ).arg( contact ), KDialogBase::Close, KDialogBase::Close, parent, name, false, true /*seperator*/ ), m_imageContainer( this ) { - setInitialSize( QSize(320,290), true ); + setInitialSize( TQSize(320,290), true ); setEscapeButton( KDialogBase::Close ); /* - QObject::connect( contact, SIGNAL( signalReceivedWebcamImage( const QPixmap& ) ), - this, SLOT( newImage( const QPixmap& ) ) ); + TQObject::connect( contact, TQT_SIGNAL( signalReceivedWebcamImage( const TQPixmap& ) ), + this, TQT_SLOT( newImage( const TQPixmap& ) ) ); */ - QObject::connect( this, SIGNAL( closeClicked() ), this, SIGNAL( closingWebcamDialog() ) ); + TQObject::connect( this, TQT_SIGNAL( closeClicked() ), this, TQT_SIGNAL( closingWebcamDialog() ) ); /* - QObject::connect( contact, SIGNAL( webcamClosed( int ) ), this, SLOT( webcamClosed( int ) ) ); + TQObject::connect( contact, TQT_SIGNAL( webcamClosed( int ) ), this, TQT_SLOT( webcamClosed( int ) ) ); */ - QFrame* page = plainPage(); + TQFrame* page = plainPage(); if ( page ) { kdDebug(14180) << k_funcinfo << "Adding webcam image container" << endl; @@ -59,7 +59,7 @@ MSNWebcamDialog::~ MSNWebcamDialog( ) } -void MSNWebcamDialog::newImage( const QPixmap & image ) +void MSNWebcamDialog::newImage( const TQPixmap & image ) { kdDebug(14180) << k_funcinfo << "New image received" << endl; // kdDebug(14180) << image << endl; @@ -72,7 +72,7 @@ void MSNWebcamDialog::webcamClosed( int reason ) { kdDebug(14180) << k_funcinfo << "webcam closed with reason?? " << reason <<endl; //m_imageContainer.clear(); - //m_imageContainer.setText( i18n( "Webcam closed with reason %1" ).arg( QString::number( reason ) ) ); + //m_imageContainer.setText( i18n( "Webcam closed with reason %1" ).arg( TQString::number( reason ) ) ); //m_imageContainer.setAlignment( Qt::AlignCenter ); //show(); } |