diff options
Diffstat (limited to 'kioslave/remote/testremote.cpp')
-rw-r--r-- | kioslave/remote/testremote.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kioslave/remote/testremote.cpp b/kioslave/remote/testremote.cpp index a3e979023..3c76b6f22 100644 --- a/kioslave/remote/testremote.cpp +++ b/kioslave/remote/testremote.cpp @@ -28,12 +28,12 @@ #include <stdlib.h> -static bool check(const QString& txt, QString a, QString b) +static bool check(const TQString& txt, TQString a, TQString b) { if (a.isEmpty()) - a = QString::null; + a = TQString::null; if (b.isEmpty()) - b = QString::null; + b = TQString::null; if (a == b) { kdDebug() << txt << " : checking '" << a << "' against expected value '" << b << "'... " << "ok" << endl; } |