diff options
Diffstat (limited to 'quanta/utility/newstuff.h')
-rw-r--r-- | quanta/utility/newstuff.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/quanta/utility/newstuff.h b/quanta/utility/newstuff.h index e25639a0..3be6857d 100644 --- a/quanta/utility/newstuff.h +++ b/quanta/utility/newstuff.h @@ -29,15 +29,15 @@ Makes possible downloading and installing a DTEP resource files from a server. class KURL; -class TQNewDTEPStuff: public KNewStuffSecure +class QNewDTEPStuff: public KNewStuffSecure { Q_OBJECT TQ_OBJECT public: - TQNewDTEPStuff(const TQString &type, TQWidget *tqparentWidget=0) + QNewDTEPStuff(const TQString &type, TQWidget *tqparentWidget=0) :KNewStuffSecure(type, tqparentWidget){}; - ~TQNewDTEPStuff() {}; + ~QNewDTEPStuff() {}; private: virtual void installResource(); @@ -48,14 +48,14 @@ Makes possible downloading and installing a Toolbar resource files from a server @author Andras Mantia */ -class TQNewToolbarStuff: public KNewStuffSecure +class QNewToolbarStuff: public KNewStuffSecure { Q_OBJECT TQ_OBJECT public: - TQNewToolbarStuff(const TQString &type, TQWidget *tqparentWidget=0); - ~TQNewToolbarStuff() {}; + QNewToolbarStuff(const TQString &type, TQWidget *tqparentWidget=0); + ~QNewToolbarStuff() {}; signals: void loadToolbarFile(const KURL&); @@ -69,14 +69,14 @@ Makes possible downloading and installing a template resource files from a serve @author Andras Mantia */ -class TQNewTemplateStuff: public KNewStuffSecure +class QNewTemplateStuff: public KNewStuffSecure { Q_OBJECT TQ_OBJECT public: - TQNewTemplateStuff(const TQString &type, TQWidget *tqparentWidget=0); - ~TQNewTemplateStuff() {}; + QNewTemplateStuff(const TQString &type, TQWidget *tqparentWidget=0); + ~QNewTemplateStuff() {}; signals: void openFile(const KURL&); @@ -90,15 +90,15 @@ Makes possible downloading and installing a script resource files from a server. @author Andras Mantia */ -class TQNewScriptStuff: public KNewStuffSecure +class QNewScriptStuff: public KNewStuffSecure { Q_OBJECT TQ_OBJECT public: - TQNewScriptStuff(const TQString &type, TQWidget *tqparentWidget=0) + QNewScriptStuff(const TQString &type, TQWidget *tqparentWidget=0) :KNewStuffSecure(type, tqparentWidget){}; - ~TQNewScriptStuff() {}; + ~QNewScriptStuff() {}; private: virtual void installResource(); @@ -109,15 +109,15 @@ Makes possible downloading and installing a documentation resource files from a @author Andras Mantia */ -class TQNewDocStuff: public KNewStuffSecure +class QNewDocStuff: public KNewStuffSecure { Q_OBJECT TQ_OBJECT public: - TQNewDocStuff(const TQString &type, TQWidget *tqparentWidget=0) + QNewDocStuff(const TQString &type, TQWidget *tqparentWidget=0) :KNewStuffSecure(type, tqparentWidget){}; - ~TQNewDocStuff() {}; + ~QNewDocStuff() {}; private: virtual void installResource(); |