summaryrefslogtreecommitdiffstats
path: root/kfile-plugins/lnk/read_lnk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kfile-plugins/lnk/read_lnk.cpp')
-rw-r--r--kfile-plugins/lnk/read_lnk.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kfile-plugins/lnk/read_lnk.cpp b/kfile-plugins/lnk/read_lnk.cpp
index 2d627fb..f65b657 100644
--- a/kfile-plugins/lnk/read_lnk.cpp
+++ b/kfile-plugins/lnk/read_lnk.cpp
@@ -62,7 +62,7 @@ bool readLNK(const KURL &url, LNKInfo &info)
{
const char* lnkFile = 0;
- QString tempFile;
+ TQString tempFile;
if ( KIO::NetAccess::download(url, tempFile, 0) )
lnkFile = tempFile.latin1();
else
@@ -156,7 +156,7 @@ bool readLNK(const KURL &url, LNKInfo &info)
{
info.volumeName = (start + loc.localVolume + 0x10); // volume label
- info.path = QString::null;
+ info.path = TQString::null;
if ( *(start + loc.basePath) )
{
@@ -181,7 +181,7 @@ bool readLNK(const KURL &url, LNKInfo &info)
}
else // network path
{
- info.path = QString("%1\\%2")
+ info.path = TQString("%1\\%2")
.arg(start + loc.netVolume + 0x14) // network share name
.arg(start + loc.pathname);
}