summaryrefslogtreecommitdiffstats
path: root/kdecore/tests/ktempfiletest.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdecore/tests/ktempfiletest.cpp
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/tests/ktempfiletest.cpp')
-rw-r--r--kdecore/tests/ktempfiletest.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdecore/tests/ktempfiletest.cpp b/kdecore/tests/ktempfiletest.cpp
index aacf30255..60404f03a 100644
--- a/kdecore/tests/ktempfiletest.cpp
+++ b/kdecore/tests/ktempfiletest.cpp
@@ -19,7 +19,7 @@
#include "ktempfile.h"
#include "kapplication.h"
#include "kstandarddirs.h"
-#include <qstring.h>
+#include <tqstring.h>
#include <unistd.h>
#include <stdio.h>
@@ -34,14 +34,14 @@ main(int argc, char *argv[])
printf("Filename = %s\n", f4.name().ascii());
printf("Making tempfile with \".ps\" extension.\n");
- KTempFile f2(QString::null, ".ps");
+ KTempFile f2(TQString::null, ".ps");
printf("Filename = %s\n", f2.name().ascii());
printf("Making tempfile in home directory.\n");
- KTempFile f3(QString((const char *)getenv("HOME"))+"/testXXX", ".myEXT", 0666);
+ KTempFile f3(TQString((const char *)getenv("HOME"))+"/testXXX", ".myEXT", 0666);
printf("Filename = %s\n", f3.name().ascii());
- QString name = locateLocal("socket", "test");
+ TQString name = locateLocal("socket", "test");
printf("Socket Filename = %s\n", name.ascii());
printf("Done.\n");