summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/startdialogimpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/startdialogimpl.cpp')
-rw-r--r--kdevdesigner/designer/startdialogimpl.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/kdevdesigner/designer/startdialogimpl.cpp b/kdevdesigner/designer/startdialogimpl.cpp
index 1b21432f..b74c3ae5 100644
--- a/kdevdesigner/designer/startdialogimpl.cpp
+++ b/kdevdesigner/designer/startdialogimpl.cpp
@@ -43,15 +43,15 @@ StartDialog::StartDialog( TQWidget *parent, const TQString &templatePath )
newForm = new NewForm( templateView, templatePath );
recentFiles.clear();
initFileOpen();
- showInFuture = TRUE;
-
- connect( buttonHelp, TQT_SIGNAL( clicked() ),
- MainWindow::self, TQT_SLOT( showDialogHelp() ) );
- connect( recentView, TQT_SIGNAL( doubleClicked(TQIconViewItem*) ),
- this, TQT_SLOT( accept() ) );
- connect( recentView, TQT_SIGNAL( returnPressed(TQIconViewItem*) ),
- this, TQT_SLOT( accept() ) );
- connect( fd, TQT_SIGNAL( fileSelected() ), this, TQT_SLOT( accept() ) );
+ showInFuture = true;
+
+ connect( buttonHelp, TQ_SIGNAL( clicked() ),
+ MainWindow::self, TQ_SLOT( showDialogHelp() ) );
+ connect( recentView, TQ_SIGNAL( doubleClicked(TQIconViewItem*) ),
+ this, TQ_SLOT( accept() ) );
+ connect( recentView, TQ_SIGNAL( returnPressed(TQIconViewItem*) ),
+ this, TQ_SLOT( accept() ) );
+ connect( fd, TQ_SIGNAL( fileSelected() ), this, TQ_SLOT( accept() ) );
}
void StartDialog::accept()
@@ -119,12 +119,12 @@ void StartDialog::clearFileInfo()
void StartDialog::setRecentlyFiles( TQStringList &files )
{
- insertRecentItems( files, FALSE );
+ insertRecentItems( files, false );
}
void StartDialog::setRecentlyProjects( TQStringList &projects )
{
- insertRecentItems( projects, TRUE );
+ insertRecentItems( projects, true );
}
void StartDialog::insertRecentItems( TQStringList &files, bool isProject )
@@ -139,7 +139,7 @@ void StartDialog::insertRecentItems( TQStringList &files, bool isProject )
item = new TQIconViewItem( recentView, fi.fileName() );
recentFiles[recentView->index( item )] = *it;
item->setPixmap( BarIcon( iconName, KDevDesignerPartFactory::instance() ) );
- item->setDragEnabled( FALSE );
+ item->setDragEnabled( false );
}
}
@@ -160,7 +160,7 @@ void StartDialog::initFileOpen()
}
delete l;
- fd->setSizeGripEnabled ( FALSE );
+ fd->setSizeGripEnabled ( false );
tabLayout->addWidget( fd );
TQPluginManager<ImportFilterInterface> manager( IID_ImportFilter, TQApplication::libraryPaths(),