diff options
Diffstat (limited to 'akregator/src/pluginmanager.h')
-rw-r--r-- | akregator/src/pluginmanager.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/akregator/src/pluginmanager.h b/akregator/src/pluginmanager.h index 15d0c253e..ca97753f4 100644 --- a/akregator/src/pluginmanager.h +++ b/akregator/src/pluginmanager.h @@ -49,22 +49,22 @@ class PluginManager * The keys used in the query (Type, ServiceType, Exec) are all * fields found in the .desktop files. * - * @param constraint A constraint to limit the choices returned, QString::null to + * @param constraint A constraint to limit the choices returned, TQString::null to * get all services of the given @p servicetype * * @return A list of services that satisfy the query * @see http://developer.kde.org/documentation/library/kdeqt/tradersyntax.html */ - static KTrader::OfferList query( const QString& constraint = QString::null ); + static KTrader::OfferList query( const TQString& constraint = TQString::null ); /** * Load and instantiate plugin from query - * @param constraint A constraint to limit the choices returned, QString::null to + * @param constraint A constraint to limit the choices returned, TQString::null to * get all services of the given @p servicetype * @return Pointer to Plugin, or NULL if error * @see http://developer.kde.org/documentation/library/kdeqt/tradersyntax.html */ - static Akregator::Plugin* createFromQuery( const QString& constraint = QString::null ); + static Akregator::Plugin* createFromQuery( const TQString& constraint = TQString::null ); /** * Load and instantiate plugin from service @@ -96,7 +96,7 @@ class PluginManager * Show modal info dialog about plugin * @param constraint A constraint to limit the choices returned */ - static void showAbout( const QString& constraint ); + static void showAbout( const TQString& constraint ); private: struct StoreItem { |