summaryrefslogtreecommitdiffstats
path: root/src/kvpncimportprofileselectiondialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kvpncimportprofileselectiondialog.cpp')
-rw-r--r--src/kvpncimportprofileselectiondialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kvpncimportprofileselectiondialog.cpp b/src/kvpncimportprofileselectiondialog.cpp
index 53c99a3..010277d 100644
--- a/src/kvpncimportprofileselectiondialog.cpp
+++ b/src/kvpncimportprofileselectiondialog.cpp
@@ -20,12 +20,12 @@
#include "kvpncimportprofileselectiondialog.h"
#include <kpushbutton.h>
#include <klistview.h>
-#include <qlistview.h>
+#include <tqlistview.h>
KvpncImportProfileSelectionDialog::KvpncImportProfileSelectionDialog()
{
allSelected = false;
- connect (ToggleAllPushButton, SIGNAL(clicked()), this, SLOT(importAllToggled()));
+ connect (ToggleAllPushButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(importAllToggled()));
}
@@ -35,10 +35,10 @@ KvpncImportProfileSelectionDialog::~KvpncImportProfileSelectionDialog()
void KvpncImportProfileSelectionDialog::importAllToggled()
{
- QListViewItemIterator it2( (QListView *) ImportProfileListView );
+ TQListViewItemIterator it2( (TQListView *) ImportProfileListView );
for ( ; it2.current(); ++it2 )
{
- ((QCheckListItem*)it2.current())->setOn(!allSelected);
+ ((TQCheckListItem*)it2.current())->setOn(!allSelected);
}
allSelected=!allSelected;
}