From c663b6440964f6ac48027143ac9e63298991f9d0 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:33:34 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- nsplugins/plugin_paths.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'nsplugins/plugin_paths.cpp') diff --git a/nsplugins/plugin_paths.cpp b/nsplugins/plugin_paths.cpp index 2c228ac25..8406ecebc 100644 --- a/nsplugins/plugin_paths.cpp +++ b/nsplugins/plugin_paths.cpp @@ -28,16 +28,16 @@ #include #include -QStringList getSearchPaths() +TQStringList getSearchPaths() { - QStringList searchPaths; + TQStringList searchPaths; KConfig *config = new KConfig("kcmnspluginrc", false); config->setGroup("Misc"); // setup default paths if ( !config->hasKey("scanPaths") ) { - QStringList paths; + TQStringList paths; // keep sync with kdebase/kcontrol/konqhtml paths.append("$HOME/.mozilla/plugins"); paths.append("$HOME/.netscape/plugins"); @@ -67,8 +67,8 @@ QStringList getSearchPaths() delete config; // append environment variable NPX_PLUGIN_PATH - QStringList envs = QStringList::split(':', getenv("NPX_PLUGIN_PATH")); - QStringList::Iterator it; + TQStringList envs = TQStringList::split(':', getenv("NPX_PLUGIN_PATH")); + TQStringList::Iterator it; for (it = envs.begin(); it != envs.end(); ++it) searchPaths.append(*it); -- cgit v1.2.3