summaryrefslogtreecommitdiffstats
path: root/kdecore/tests/kstddirstest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdecore/tests/kstddirstest.cpp')
-rw-r--r--kdecore/tests/kstddirstest.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kdecore/tests/kstddirstest.cpp b/kdecore/tests/kstddirstest.cpp
index 23c0f0a1c..fa797d665 100644
--- a/kdecore/tests/kstddirstest.cpp
+++ b/kdecore/tests/kstddirstest.cpp
@@ -10,8 +10,8 @@ int main(int argc, char **argv)
KStandardDirs t;
KConfig config; // to add custom entries - a bit tricky :/
- QStringList list;
- QString s;
+ TQStringList list;
+ TQString s;
t.saveLocation("icon");
@@ -19,32 +19,32 @@ int main(int argc, char **argv)
if (!s.isNull()) kdDebug() << s << endl;
list = t.findAllResources("data", "kfind/toolbar", true);
- for (QStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
+ for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
kdDebug() << "data " << (*it).ascii() << endl;
}
list = t.findAllResources("config", "kcmdisplayrc");
- for (QStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
+ for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
kdDebug() << "config " << (*it).ascii() << endl;
}
list = t.findAllResources("config", "kcmdisplayrc", false, true);
- for (QStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
+ for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
kdDebug() << "config2 " << (*it).ascii() << endl;
}
list = t.findAllResources("html", "en/*/index.html", false);
- for (QStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
+ for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
kdDebug() << "docs " << (*it).ascii() << endl;
}
list = t.findAllResources("html", "*/*/*.html", false);
- for (QStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
+ for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
kdDebug() << "docs " << (*it).ascii() << endl;
}
list = t.findDirs("data", "kwin");
- for (QStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
+ for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
kdDebug() << "kwin dirs " << (*it).ascii() << endl;
}