summaryrefslogtreecommitdiffstats
path: root/quanta/utility/newstuff.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-16 19:02:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-16 19:02:47 +0000
commite985f7e545f4739493965aad69bbecb136dc9346 (patch)
tree54afd409d8acd6202dd8ab611d24e78c28e4c0a0 /quanta/utility/newstuff.h
parentf7670c198945adc3b95ad69a959fe5f8ae55b493 (diff)
downloadtdewebdev-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 'quanta/utility/newstuff.h')
-rw-r--r--quanta/utility/newstuff.h41
1 files changed, 23 insertions, 18 deletions
diff --git a/quanta/utility/newstuff.h b/quanta/utility/newstuff.h
index bdd49a50..e25639a0 100644
--- a/quanta/utility/newstuff.h
+++ b/quanta/utility/newstuff.h
@@ -29,14 +29,15 @@ Makes possible downloading and installing a DTEP resource files from a server.
class KURL;
-class QNewDTEPStuff: public KNewStuffSecure
+class TQNewDTEPStuff: public KNewStuffSecure
{
Q_OBJECT
+ TQ_OBJECT
public:
- QNewDTEPStuff(const TQString &type, TQWidget *parentWidget=0)
- :KNewStuffSecure(type, parentWidget){};
- ~QNewDTEPStuff() {};
+ TQNewDTEPStuff(const TQString &type, TQWidget *tqparentWidget=0)
+ :KNewStuffSecure(type, tqparentWidget){};
+ ~TQNewDTEPStuff() {};
private:
virtual void installResource();
@@ -47,13 +48,14 @@ Makes possible downloading and installing a Toolbar resource files from a server
@author Andras Mantia
*/
-class QNewToolbarStuff: public KNewStuffSecure
+class TQNewToolbarStuff: public KNewStuffSecure
{
Q_OBJECT
+ TQ_OBJECT
public:
- QNewToolbarStuff(const TQString &type, TQWidget *parentWidget=0);
- ~QNewToolbarStuff() {};
+ TQNewToolbarStuff(const TQString &type, TQWidget *tqparentWidget=0);
+ ~TQNewToolbarStuff() {};
signals:
void loadToolbarFile(const KURL&);
@@ -67,13 +69,14 @@ Makes possible downloading and installing a template resource files from a serve
@author Andras Mantia
*/
-class QNewTemplateStuff: public KNewStuffSecure
+class TQNewTemplateStuff: public KNewStuffSecure
{
Q_OBJECT
+ TQ_OBJECT
public:
- QNewTemplateStuff(const TQString &type, TQWidget *parentWidget=0);
- ~QNewTemplateStuff() {};
+ TQNewTemplateStuff(const TQString &type, TQWidget *tqparentWidget=0);
+ ~TQNewTemplateStuff() {};
signals:
void openFile(const KURL&);
@@ -87,14 +90,15 @@ Makes possible downloading and installing a script resource files from a server.
@author Andras Mantia
*/
-class QNewScriptStuff: public KNewStuffSecure
+class TQNewScriptStuff: public KNewStuffSecure
{
Q_OBJECT
+ TQ_OBJECT
public:
- QNewScriptStuff(const TQString &type, TQWidget *parentWidget=0)
- :KNewStuffSecure(type, parentWidget){};
- ~QNewScriptStuff() {};
+ TQNewScriptStuff(const TQString &type, TQWidget *tqparentWidget=0)
+ :KNewStuffSecure(type, tqparentWidget){};
+ ~TQNewScriptStuff() {};
private:
virtual void installResource();
@@ -105,14 +109,15 @@ Makes possible downloading and installing a documentation resource files from a
@author Andras Mantia
*/
-class QNewDocStuff: public KNewStuffSecure
+class TQNewDocStuff: public KNewStuffSecure
{
Q_OBJECT
+ TQ_OBJECT
public:
- QNewDocStuff(const TQString &type, TQWidget *parentWidget=0)
- :KNewStuffSecure(type, parentWidget){};
- ~QNewDocStuff() {};
+ TQNewDocStuff(const TQString &type, TQWidget *tqparentWidget=0)
+ :KNewStuffSecure(type, tqparentWidget){};
+ ~TQNewDocStuff() {};
private:
virtual void installResource();