summaryrefslogtreecommitdiffstats
path: root/quanta/components/debugger/pathmapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/components/debugger/pathmapper.cpp')
-rw-r--r--quanta/components/debugger/pathmapper.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/components/debugger/pathmapper.cpp b/quanta/components/debugger/pathmapper.cpp
index e1d74875..41d5053e 100644
--- a/quanta/components/debugger/pathmapper.cpp
+++ b/quanta/components/debugger/pathmapper.cpp
@@ -110,21 +110,21 @@ TQString PathMapper::mapServerPathToLocal(const TQString &serverpath)
newpath = translate(serverpath, m_serverBasedir, m_localBasedir);
// Check if this dir is matched by the basedirs
- if(TQExtFileInfo::exists(newpath, true, 0L))
+ if(QExtFileInfo::exists(newpath, true, 0L))
return newpath;
// Check if any previous mappings fit...
for (unsigned int cnt = 0; cnt < m_serverlist.count(); cnt++ )
{
newpath = translate(serverpath, m_serverlist[cnt], m_locallist[cnt]);
- if(TQExtFileInfo::exists(newpath, true, 0L))
+ if(QExtFileInfo::exists(newpath, true, 0L))
return newpath;
}
// If the basedirs didnt match, check if the file exists,
// otherwise scan through the mapping history or show the
// mapping dialog
- if(!TQExtFileInfo::exists(serverpath, true, 0L))
+ if(!QExtFileInfo::exists(serverpath, true, 0L))
{
PathMapperDialog pmdlg(serverpath, PathMapperDialog::ServerToLocal);
for (unsigned int cnt = 0; cnt < m_serverlist.count(); cnt++ )