summaryrefslogtreecommitdiffstats
path: root/krdc/hostprofiles.ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'krdc/hostprofiles.ui.h')
-rw-r--r--krdc/hostprofiles.ui.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/krdc/hostprofiles.ui.h b/krdc/hostprofiles.ui.h
index 56c63f23..2626bb78 100644
--- a/krdc/hostprofiles.ui.h
+++ b/krdc/hostprofiles.ui.h
@@ -11,10 +11,10 @@ void HostProfiles::removeHost()
{
HostPreferences *hps = HostPreferences::instance();
- QListViewItemIterator it(hostListView);
+ TQListViewItemIterator it(hostListView);
while (it.current())
{
- QListViewItem *vi = it.current();
+ TQListViewItem *vi = it.current();
if (vi->isSelected())
{
HostPrefPtr hp = hps->getHostPref(vi->text(0), vi->text(1));
@@ -32,10 +32,10 @@ void HostProfiles::removeAllHosts()
{
HostPreferences *hps = HostPreferences::instance();
- QListViewItemIterator it(hostListView);
+ TQListViewItemIterator it(hostListView);
while (it.current())
{
- QListViewItem *vi = it.current();
+ TQListViewItem *vi = it.current();
HostPrefPtr hp = hps->getHostPref(vi->text(0), vi->text(1));
if (hp)
deletedHosts += hp;
@@ -48,7 +48,7 @@ void HostProfiles::removeAllHosts()
void HostProfiles::selectionChanged()
{
- QListViewItemIterator it(hostListView);
+ TQListViewItemIterator it(hostListView);
while (it.current())
{
if (it.current()->isSelected())
@@ -92,7 +92,7 @@ void HostProfiles::save()
hps->sync();
}
-void HostProfiles::slotHostDoubleClicked( QListViewItem *vi )
+void HostProfiles::slotHostDoubleClicked( TQListViewItem *vi )
{
HostPreferences *hps = HostPreferences::instance();
HostPrefPtr hp = hps->getHostPref(vi->text(0), vi->text(1));