diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdecore/tests/kstddirstest.cpp | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-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/kstddirstest.cpp')
-rw-r--r-- | kdecore/tests/kstddirstest.cpp | 16 |
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; } |