diff options
Diffstat (limited to 'buildtools/qmake/choosesubprojectdlg.cpp')
-rw-r--r-- | buildtools/qmake/choosesubprojectdlg.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/buildtools/qmake/choosesubprojectdlg.cpp b/buildtools/qmake/choosesubprojectdlg.cpp index 516e5daa..fc0cb068 100644 --- a/buildtools/qmake/choosesubprojectdlg.cpp +++ b/buildtools/qmake/choosesubprojectdlg.cpp @@ -47,17 +47,17 @@ void ChooseSubprojectDlg::accept() TQDialog::accept(); } -ChooseItem::ChooseItem( TQMakeScopeItem * spitem, TQListViewItem * tqparent, TQString text ) +ChooseItem::ChooseItem( QMakeScopeItem * spitem, TQListViewItem * tqparent, TQString text ) :KListViewItem(tqparent, text), m_spitem(spitem) { } -ChooseItem::ChooseItem( TQMakeScopeItem * spitem, TQListView * tqparent, TQString text ) +ChooseItem::ChooseItem( QMakeScopeItem * spitem, TQListView * tqparent, TQString text ) :KListViewItem(tqparent, text), m_spitem(spitem) { } -TQMakeScopeItem * ChooseItem::subproject( ) +QMakeScopeItem * ChooseItem::subproject( ) { return m_spitem; } @@ -69,7 +69,7 @@ void ChooseSubprojectDlg::fillSubprojectsView( ChooseItem *item ) TQListViewItem * sub_spitem = item->subproject()->firstChild(); while( sub_spitem ) { - TQMakeScopeItem *spitem = dynamic_cast<TQMakeScopeItem *>(sub_spitem); + QMakeScopeItem *spitem = dynamic_cast<QMakeScopeItem *>(sub_spitem); if ( spitem && spitem->scope->scopeType() == Scope::ProjectScope ) { ChooseItem *child_item = new ChooseItem(spitem, item, spitem->text(0)); @@ -95,7 +95,7 @@ void ChooseSubprojectDlg::itemSelected( TQListViewItem * it ) buttonOk->setEnabled(true); } -TQMakeScopeItem * ChooseSubprojectDlg::selectedSubproject( ) +QMakeScopeItem * ChooseSubprojectDlg::selectedSubproject( ) { if (subprojects_view->currentItem()) { |