diff options
| author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 | 
|---|---|---|
| committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 | 
| commit | d6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch) | |
| tree | d109539636691d7b03036ca1c0ed29dbae6577cf /kdevdesigner/designer/filechooser.cpp | |
| parent | 3331a47a9cad24795c7440ee8107143ce444ef34 (diff) | |
| download | tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip | |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdevdesigner/designer/filechooser.cpp')
| -rw-r--r-- | kdevdesigner/designer/filechooser.cpp | 34 | 
1 files changed, 17 insertions, 17 deletions
| diff --git a/kdevdesigner/designer/filechooser.cpp b/kdevdesigner/designer/filechooser.cpp index 5a882b37..9f1287e0 100644 --- a/kdevdesigner/designer/filechooser.cpp +++ b/kdevdesigner/designer/filechooser.cpp @@ -25,31 +25,31 @@  **********************************************************************/  #include "filechooser.h" -#include <qlineedit.h> -#include <qpushbutton.h> -#include <qfiledialog.h> -#include <qlayout.h> +#include <tqlineedit.h> +#include <tqpushbutton.h> +#include <tqfiledialog.h> +#include <tqlayout.h>  #include <kfiledialog.h> -FileChooser::FileChooser( QWidget *parent, const char *name ) -    : QWidget( parent, name ), md( File ) +FileChooser::FileChooser( TQWidget *parent, const char *name ) +    : TQWidget( parent, name ), md( File )  { -    QHBoxLayout *layout = new QHBoxLayout( this ); +    TQHBoxLayout *layout = new TQHBoxLayout( this );      layout->setMargin( 0 ); -    lineEdit = new QLineEdit( this, "filechooser_lineedit" ); +    lineEdit = new TQLineEdit( this, "filechooser_lineedit" );      layout->addWidget( lineEdit ); -    connect( lineEdit, SIGNAL( textChanged( const QString & ) ), -	     this, SIGNAL( fileNameChanged( const QString & ) ) ); +    connect( lineEdit, TQT_SIGNAL( textChanged( const TQString & ) ), +	     this, TQT_SIGNAL( fileNameChanged( const TQString & ) ) ); -    button = new QPushButton( "...", this, "filechooser_button" ); +    button = new TQPushButton( "...", this, "filechooser_button" );      button->setFixedWidth( button->fontMetrics().width( " ... " ) );      layout->addWidget( button ); -    connect( button, SIGNAL( clicked() ), -	     this, SLOT( chooseFile() ) ); +    connect( button, TQT_SIGNAL( clicked() ), +	     this, TQT_SLOT( chooseFile() ) );      setFocusProxy( lineEdit );  } @@ -64,21 +64,21 @@ FileChooser::Mode FileChooser::mode() const      return md;  } -void FileChooser::setFileName( const QString &fn ) +void FileChooser::setFileName( const TQString &fn )  {      lineEdit->setText( fn );  } -QString FileChooser::fileName() const +TQString FileChooser::fileName() const  {      return lineEdit->text();  }  void FileChooser::chooseFile()  { -    QString fn; +    TQString fn;      if ( mode() == File ) -	fn = KFileDialog::getOpenFileName( lineEdit->text(), QString::null, this ); +	fn = KFileDialog::getOpenFileName( lineEdit->text(), TQString::null, this );      else  	fn = KFileDialog::getExistingDirectory( lineEdit->text(),this ); | 
