diff options
Diffstat (limited to 'src/dialogs/qfiledialog.cpp')
-rw-r--r-- | src/dialogs/qfiledialog.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/dialogs/qfiledialog.cpp b/src/dialogs/qfiledialog.cpp index cfa6dd39d..fddc5716a 100644 --- a/src/dialogs/qfiledialog.cpp +++ b/src/dialogs/qfiledialog.cpp @@ -629,7 +629,7 @@ static void makeVariables() { class TQRenameEdit : public TQLineEdit { - Q_OBJECT + TQ_OBJECT public: TQRenameEdit( TQWidget *parent ) @@ -657,7 +657,7 @@ class TQFileListBox : public TQListBox { friend class TQFileDialog; - Q_OBJECT + TQ_OBJECT private: TQFileListBox( TQWidget *parent, TQFileDialog *d ); @@ -707,7 +707,7 @@ private: class TQFileDialogTQFileListView : public TQListView { - Q_OBJECT + TQ_OBJECT public: TQFileDialogTQFileListView( TQWidget *parent, TQFileDialog *d ); @@ -768,7 +768,7 @@ private: class TQFDProgressAnimation : public TQWidget { - Q_OBJECT + TQ_OBJECT public: TQFDProgressAnimation( TQWidget *parent ); @@ -842,7 +842,7 @@ void TQFDProgressAnimation::paintEvent( TQPaintEvent * ) class TQFDProgressDialog : public TQDialog { - Q_OBJECT + TQ_OBJECT public: TQFDProgressDialog( TQWidget *parent, const TQString &fn, int steps ); @@ -2006,7 +2006,7 @@ TQString TQFileDialogPrivate::File::text( int column ) const return info.name(); case 1: if ( info.isFile() ) { -#if (QT_VERSION-0 >= 0x040000) +#if (TQT_VERSION-0 >= 0x040000) #error "clean up Large File Support" #elif defined(QT_ABI_QT4) TQIODevice::Offset size = info.size(); @@ -3511,7 +3511,7 @@ TQString TQFileDialog::getOpenFileName( const TQString & startWith, TQFileDialog *dlg = new TQFileDialog( *workingDirectory, TQString::null, parent, name ? name : "qt_filedlg_gofn", TRUE ); - Q_CHECK_PTR( dlg ); + TQ_CHECK_PTR( dlg ); #ifndef QT_NO_WIDGET_TOPEXTRA if ( !caption.isNull() ) dlg->setCaption( caption ); @@ -3636,7 +3636,7 @@ TQString TQFileDialog::getSaveFileName( const TQString & startWith, TQFileDialog *dlg = new TQFileDialog( *workingDirectory, TQString::null, parent, name ? name : "qt_filedlg_gsfn", TRUE ); - Q_CHECK_PTR( dlg ); + TQ_CHECK_PTR( dlg ); #ifndef QT_NO_WIDGET_TOPEXTRA if ( !caption.isNull() ) dlg->setCaption( caption ); @@ -4548,7 +4548,7 @@ TQString TQFileDialog::getExistingDirectory( const TQString & dir, TQFileDialog *dlg = new TQFileDialog( parent, name ? name : "qt_filedlg_ged", TRUE ); - Q_CHECK_PTR( dlg ); + TQ_CHECK_PTR( dlg ); #ifndef QT_NO_WIDGET_TOPEXTRA if ( !caption.isNull() ) dlg->setCaption( caption ); @@ -5708,7 +5708,7 @@ TQStringList TQFileDialog::getOpenFileNames( const TQString & filter, TQFileDialog *dlg = new TQFileDialog( *workingDirectory, TQString::null, parent, name ? name : "qt_filedlg_gofns", TRUE ); - Q_CHECK_PTR( dlg ); + TQ_CHECK_PTR( dlg ); #ifndef QT_NO_WIDGET_TOPEXTRA if ( !caption.isNull() ) dlg->setCaption( caption ); |