summaryrefslogtreecommitdiffstats
path: root/buildtools/qmake/disablesubprojectdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/qmake/disablesubprojectdlg.cpp')
-rw-r--r--buildtools/qmake/disablesubprojectdlg.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/buildtools/qmake/disablesubprojectdlg.cpp b/buildtools/qmake/disablesubprojectdlg.cpp
index 335bf33f..c05c70c9 100644
--- a/buildtools/qmake/disablesubprojectdlg.cpp
+++ b/buildtools/qmake/disablesubprojectdlg.cpp
@@ -11,16 +11,16 @@
#include "disablesubprojectdlg.h"
#include <klistview.h>
-#include <qstringlist.h>
+#include <tqstringlist.h>
#include "scope.h"
#include "qmakescopeitem.h"
-DisableSubprojectDlg::DisableSubprojectDlg( const QStringList& projects, QWidget* parent, const char* name, WFlags fl )
+DisableSubprojectDlg::DisableSubprojectDlg( const TQStringList& projects, TQWidget* parent, const char* name, WFlags fl )
: DisableSubprojectDlgBase( parent, name, fl )
{
- for( QStringList::const_iterator it = projects.begin(); it != projects.end(); ++it )
+ for( TQStringList::const_iterator it = projects.begin(); it != projects.end(); ++it )
{
- new QCheckListItem(subprojects_view, *it, QCheckListItem::CheckBox);
+ new TQCheckListItem(subprojects_view, *it, TQCheckListItem::CheckBox);
}
}
@@ -28,13 +28,13 @@ DisableSubprojectDlg::~DisableSubprojectDlg()
{
}
-QStringList DisableSubprojectDlg::selectedProjects()
+TQStringList DisableSubprojectDlg::selectedProjects()
{
- QStringList result;
- QListViewItem* item = subprojects_view->firstChild();
+ TQStringList result;
+ TQListViewItem* item = subprojects_view->firstChild();
while( item )
{
- QCheckListItem* ci = dynamic_cast<QCheckListItem*>(item);
+ TQCheckListItem* ci = dynamic_cast<TQCheckListItem*>(item);
if( ci && ci->isOn() )
{
result << ci->text(0);