diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /nsplugins/kcm_nsplugins.cpp | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'nsplugins/kcm_nsplugins.cpp')
-rw-r--r-- | nsplugins/kcm_nsplugins.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/nsplugins/kcm_nsplugins.cpp b/nsplugins/kcm_nsplugins.cpp index 0e5c88e6c..dbb5cb1af 100644 --- a/nsplugins/kcm_nsplugins.cpp +++ b/nsplugins/kcm_nsplugins.cpp @@ -20,16 +20,16 @@ #include <stdio.h> #include <unistd.h> -#include <qregexp.h> -#include <qlayout.h> +#include <tqregexp.h> +#include <tqlayout.h> #include <kstandarddirs.h> #include <klocale.h> #include <kiconloader.h> #include <kfiledialog.h> #include <kurlrequester.h> -#include <qwhatsthis.h> -#include <qvgroupbox.h> +#include <tqwhatsthis.h> +#include <tqvgroupbox.h> #include <kdebug.h> #include <kapplication.h> @@ -38,38 +38,38 @@ #include "plugin_paths.h" -static QDateTime lastChanged( QString dir ) +static TQDateTime lastChanged( TQString dir ) { - QDateTime t = QFileInfo( dir ).lastModified(); + TQDateTime t = TQFileInfo( dir ).lastModified(); if( t.isNull()) return t; - QStringList subdirs = QDir( dir ).entryList(); - for( QStringList::ConstIterator it = subdirs.begin(); + TQStringList subdirs = TQDir( dir ).entryList(); + for( TQStringList::ConstIterator it = subdirs.begin(); it != subdirs.end(); ++it ) { if( *it == "." || *it == ".." ) continue; - QDateTime t2 = lastChanged( *it ); + TQDateTime t2 = lastChanged( *it ); if( !t2.isNull() && t2 > t ) t = t2; } return t; } -static bool checkSearchPathTimestamps( QStringList paths, QStringList timestamps ) +static bool checkSearchPathTimestamps( TQStringList paths, TQStringList timestamps ) { - QStringList currentTimestamps; + TQStringList currentTimestamps; bool changed = false; - QStringList::ConstIterator t = timestamps.begin(); - for( QStringList::ConstIterator it = paths.begin(); + TQStringList::ConstIterator t = timestamps.begin(); + for( TQStringList::ConstIterator it = paths.begin(); it != paths.end(); ++it, ++t ) { - QDateTime current = lastChanged( *it ); + TQDateTime current = lastChanged( *it ); // store non-existent directory as "N" string rather than empty string, KConfig // has a bug with storing a list of empty items - if( *t == "N" ? !current.isNull() : current != QDateTime::fromString( *t, Qt::ISODate )) + if( *t == "N" ? !current.isNull() : current != TQDateTime::fromString( *t, Qt::ISODate )) changed = true; currentTimestamps.append( current.isNull() ? "N" : current.toString( Qt::ISODate )); } @@ -98,9 +98,9 @@ extern "C" // check if plugins have changed, as just ignoring everything and requiring the user // to trigger the check manually is not reasonable - that probably actually obsoletes // both options - QStringList searchPaths = getSearchPaths(); - QStringList lastSearchPaths = config->readListEntry( "lastSearchPaths" ); - QStringList lastTimestamps = config->readListEntry ( "lastSearchTimestamps" ); + TQStringList searchPaths = getSearchPaths(); + TQStringList lastSearchPaths = config->readListEntry( "lastSearchPaths" ); + TQStringList lastTimestamps = config->readListEntry ( "lastSearchTimestamps" ); if( searchPaths != lastSearchPaths || lastTimestamps.count() != lastSearchPaths.count()) { // count changed, set empty timestamps, still call checkSearchPathTimestamps() // in order to save the current timestamps for the next time |