summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/pathmapperdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/components/debugger/pathmapperdialog.cpp')
-rw-r--r--quanta/components/debugger/pathmapperdialog.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/quanta/components/debugger/pathmapperdialog.cpp b/quanta/components/debugger/pathmapperdialog.cpp
index 8cfb949e..74e01956 100644
--- a/quanta/components/debugger/pathmapperdialog.cpp
+++ b/quanta/components/debugger/pathmapperdialog.cpp
@@ -16,13 +16,13 @@
#include "pathmapperdialog.h"
-#include <qlistview.h>
-#include <qlineedit.h>
+#include <tqlistview.h>
+#include <tqlineedit.h>
#include <qextfileinfo.h>
-#include <qcolor.h>
+#include <tqcolor.h>
#include <kled.h>
-PathMapperDialog::PathMapperDialog(const QString& path, const PathMapperDialog::Direction direction)
+PathMapperDialog::PathMapperDialog(const TQString& path, const PathMapperDialog::Direction direction)
: PathMapperDialogS(0, "PathMapperDialog", false, 0)
{
m_direction = direction;
@@ -32,18 +32,18 @@ PathMapperDialog::PathMapperDialog(const QString& path, const PathMapperDialog::
if(m_direction == LocalToServer)
ledTranslationExists->hide();
- connect(listHistory, SIGNAL(selectionChanged()), this, SLOT(slotSelectionChanged()));
- connect(lineLocalPath, SIGNAL(textChanged(const QString&)), this, SLOT(slotPathsChanged()));
- connect(lineServerPath, SIGNAL(textChanged(const QString&)), this, SLOT(slotPathsChanged()));
+ connect(listHistory, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(slotSelectionChanged()));
+ connect(lineLocalPath, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(slotPathsChanged()));
+ connect(lineServerPath, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(slotPathsChanged()));
}
PathMapperDialog::~PathMapperDialog()
{
}
-void PathMapperDialog::addHistory(const QString &serverdir, const QString &localdir)
+void PathMapperDialog::addHistory(const TQString &serverdir, const TQString &localdir)
{
- new QListViewItem(listHistory, localdir, serverdir);
+ new TQListViewItem(listHistory, localdir, serverdir);
}
void PathMapperDialog::slotSelectionChanged()
@@ -54,7 +54,7 @@ void PathMapperDialog::slotSelectionChanged()
void PathMapperDialog::slotPathsChanged()
{
- QString translated, from, to;
+ TQString translated, from, to;
if(m_direction == ServerToLocal)
{
from = lineServerPath->text();
@@ -88,12 +88,12 @@ void PathMapperDialog::slotPathsChanged()
lineTranslated->setText(translated);
}
-QString PathMapperDialog::serverPath()
+TQString PathMapperDialog::serverPath()
{
return lineServerPath->text();
}
-QString PathMapperDialog::localPath()
+TQString PathMapperDialog::localPath()
{
return lineLocalPath->text();
}