diff options
Diffstat (limited to 'lib/compatibility/knewstuff/engine.h')
-rw-r--r-- | lib/compatibility/knewstuff/engine.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/lib/compatibility/knewstuff/engine.h b/lib/compatibility/knewstuff/engine.h index 42f86e64..a6624d55 100644 --- a/lib/compatibility/knewstuff/engine.h +++ b/lib/compatibility/knewstuff/engine.h @@ -48,27 +48,28 @@ class ProviderDialog; * \par Maintainer: * Josef Spillner (spillner@kde.org) */ -class Engine : public QObject +class Engine : public TQObject { Q_OBJECT + TQ_OBJECT public: /** Constructor. @param newStuff a KNewStuff object @param type the Hotstuff data type such as "korganizer/calendar" - @param parentWidget the parent window + @param tqparentWidget the tqparent window */ - Engine( KNewStuff *newStuff, const TQString &type, TQWidget *parentWidget = 0 ); + Engine( KNewStuff *newStuff, const TQString &type, TQWidget *tqparentWidget = 0 ); /** Constructor. @param newStuff a KNewStuff object @param type the Hotstuff data type such as "korganizer/calendar" @param providerList the URL of the provider list - @param parentWidget the parent window + @param tqparentWidget the tqparent window */ - Engine( KNewStuff *newStuff, const TQString &type, const TQString &providerList, TQWidget *parentWidget = 0 ); + Engine( KNewStuff *newStuff, const TQString &type, const TQString &providerList, TQWidget *tqparentWidget = 0 ); /** Destructor. @@ -83,11 +84,11 @@ class Engine : public QObject TQString type() const { return mType; } /** - Returns the previously set parent widget. + Returns the previously set tqparent widget. - @return parent widget + @return tqparent widget */ - TQWidget *parentWidget() const { return mParentWidget; } + TQWidget *tqparentWidget() const { return mParentWidget; } /** Initiates the download process, retrieving provider lists and invoking @@ -102,7 +103,7 @@ class Engine : public QObject @param fileName name of the payload data file @param previewName name of the preview image file */ - void upload( const TQString &fileName = TQString::null, const TQString &previewName = TQString::null ); + void upload( const TQString &fileName = TQString(), const TQString &previewName = TQString() ); /** Downloads the specified data file. |