summaryrefslogtreecommitdiffstats
path: root/src/app.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.cpp')
-rw-r--r--src/app.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/app.cpp b/src/app.cpp
index 93902e7..99f570b 100644
--- a/src/app.cpp
+++ b/src/app.cpp
@@ -28,10 +28,10 @@
#endif
-#include <qcstring.h>
-#include <qsocket.h>
-#include <qdatetime.h>
-#include <qbitarray.h>
+#include <tqcstring.h>
+#include <tqsocket.h>
+#include <tqdatetime.h>
+#include <tqbitarray.h>
#include <stdlib.h>
#include <math.h>
@@ -76,7 +76,7 @@ extern "C"
}
-kio_appProtocol::kio_appProtocol(const QCString &pool_socket, const QCString &app_socket)
+kio_appProtocol::kio_appProtocol(const TQCString &pool_socket, const TQCString &app_socket)
: SlaveBase("kio_app", pool_socket, app_socket)
{
kdDebug() << "kio_appProtocol::kio_appProtocol()" << endl;
@@ -93,7 +93,7 @@ void kio_appProtocol::stat(const KURL &url)
{
kdDebug() << "kio_appProtocol::stat: " << url << endl;
- QString path = url.path();
+ TQString path = url.path();
if ( path.isEmpty() || path == "/" )
{
kdDebug() << "kio_appProtocol::stat: " << "creating top level entry" << endl;
@@ -105,7 +105,7 @@ void kio_appProtocol::stat(const KURL &url)
return;
}
- QString name;
+ TQString name;
bool ok = m_impl.parseURL(url, name, path);
if ( !ok )
@@ -150,7 +150,7 @@ void kio_appProtocol::listDir(const KURL &url)
return;
}
- QString name, path;
+ TQString name, path;
bool ok = m_impl.parseURL(url, name, path);
if ( !ok )
@@ -199,7 +199,7 @@ void kio_appProtocol::listRoot()
}
-void kio_appProtocol::listAppContents(const QString &name)
+void kio_appProtocol::listAppContents(const TQString &name)
{
KIO::UDSEntry entry;