summaryrefslogtreecommitdiffstats
path: root/kftpgrabber/src/widgets/bookmarks/importwizard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kftpgrabber/src/widgets/bookmarks/importwizard.cpp')
-rw-r--r--kftpgrabber/src/widgets/bookmarks/importwizard.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kftpgrabber/src/widgets/bookmarks/importwizard.cpp b/kftpgrabber/src/widgets/bookmarks/importwizard.cpp
index a40b07f..fc51a2d 100644
--- a/kftpgrabber/src/widgets/bookmarks/importwizard.cpp
+++ b/kftpgrabber/src/widgets/bookmarks/importwizard.cpp
@@ -40,8 +40,8 @@
#include "misc.h"
#include "kftpbookmarks.h"
-#include <ntqfileinfo.h>
-#include <ntqlabel.h>
+#include <tqfileinfo.h>
+#include <tqlabel.h>
#include <kurlrequester.h>
#include <tdemessagebox.h>
@@ -67,7 +67,7 @@ ImportWizard::ImportWizard(TQWidget *parent, const char *name)
m_pluginList->setFullWidth(true);
m_pluginList->setAllColumnsShowFocus(true);
- connect(m_pluginList, SIGNAL(clicked(TQListViewItem*)), this, SLOT(slotPluginsSelectionChanged(TQListViewItem*)));
+ connect(m_pluginList, TQ_SIGNAL(clicked(TQListViewItem*)), this, TQ_SLOT(slotPluginsSelectionChanged(TQListViewItem*)));
setNextEnabled(Step1, false);
@@ -116,7 +116,7 @@ void ImportWizard::next()
// Start the import
setBackEnabled(Step3, false);
- connect(m_plugin, SIGNAL(progress(int)), this, SLOT(slotImportProgress(int)));
+ connect(m_plugin, TQ_SIGNAL(progress(int)), this, TQ_SLOT(slotImportProgress(int)));
m_plugin->import(m_importUrl->url());
}
}