diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-16 19:02:47 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-16 19:02:47 +0000 |
commit | e985f7e545f4739493965aad69bbecb136dc9346 (patch) | |
tree | 54afd409d8acd6202dd8ab611d24e78c28e4c0a0 /lib/compatibility/knewstuff/downloaddialog.h | |
parent | f7670c198945adc3b95ad69a959fe5f8ae55b493 (diff) | |
download | tdewebdev-e985f7e545f4739493965aad69bbecb136dc9346.tar.gz tdewebdev-e985f7e545f4739493965aad69bbecb136dc9346.zip |
TQt4 port kdewebdev
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1237029 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/compatibility/knewstuff/downloaddialog.h')
-rw-r--r-- | lib/compatibility/knewstuff/downloaddialog.h | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/lib/compatibility/knewstuff/downloaddialog.h b/lib/compatibility/knewstuff/downloaddialog.h index 75fafae4..eea67f6e 100644 --- a/lib/compatibility/knewstuff/downloaddialog.h +++ b/lib/compatibility/knewstuff/downloaddialog.h @@ -57,25 +57,26 @@ class Engine; class KDE_EXPORT DownloadDialog : public KDialogBase { Q_OBJECT + TQ_OBJECT public: /** Constructor. @param engine a pre-built engine object, or NULL if the download dialog should create an engine on its own - @param parent the parent window + @param tqparent the tqparent window @param caption the dialog caption */ - DownloadDialog(Engine *engine, TQWidget *parent, const TQString& caption); + DownloadDialog(Engine *engine, TQWidget *tqparent, const TQString& caption); /** Alternative constructor. Always uses an internal engine. - @param parent the parent window + @param tqparent the tqparent window @param caption the dialog caption */ - DownloadDialog(TQWidget *parent, const TQString& caption); + DownloadDialog(TQWidget *tqparent, const TQString& caption); /** Destructor. @@ -154,19 +155,19 @@ class KDE_EXPORT DownloadDialog : public KDialogBase @param engine a pre-built engine object, or NULL if the download dialog should create an engine on its own - @param parent the parent window + @param tqparent the tqparent window */ - DownloadDialog(Engine *engine, TQWidget *parent = 0); - // ### KDE 4.0: remove and make caption/parent argument optional + DownloadDialog(Engine *engine, TQWidget *tqparent = 0); + // ### KDE 4.0: remove and make caption/tqparent argument optional /** Alternative constructor. Always uses an internal engine. - @param parent the parent window + @param tqparent the tqparent window */ - DownloadDialog(TQWidget *parent = 0); - // ### KDE 4.0: remove and make caption/parent argument optional + DownloadDialog(TQWidget *tqparent = 0); + // ### KDE 4.0: remove and make caption/tqparent argument optional /** Opens the download dialog. @@ -177,7 +178,7 @@ class KDE_EXPORT DownloadDialog : public KDialogBase @param type a data type such as "korganizer/calendar" */ static void open(TQString type); - // ### KDE 4.0: remove and make caption/parent argument optional + // ### KDE 4.0: remove and make caption/tqparent argument optional public slots: /** @@ -207,7 +208,7 @@ class KDE_EXPORT DownloadDialog : public KDialogBase Entry *getEntry(); void loadProvider(Provider *p); void install(Entry *e); - int installStatus(Entry *e); + int installtqStatus(Entry *e); ProviderLoader *m_loader; TQString m_entryname; |