summaryrefslogtreecommitdiffstats
path: root/quanta/utility
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/utility')
-rw-r--r--quanta/utility/newstuff.cpp4
-rw-r--r--quanta/utility/newstuff.h18
2 files changed, 11 insertions, 11 deletions
diff --git a/quanta/utility/newstuff.cpp b/quanta/utility/newstuff.cpp
index f818571d..a00e9c75 100644
--- a/quanta/utility/newstuff.cpp
+++ b/quanta/utility/newstuff.cpp
@@ -54,7 +54,7 @@ void QNewDTEPStuff::installResource()
}
QNewToolbarStuff::QNewToolbarStuff(const TQString &type, TQWidget *parentWidget)
- :KNewStuffSecure(type, parentWidget)
+ :TDENewStuffSecure(type, parentWidget)
{
connect(this, TQT_SIGNAL(loadToolbarFile(const KURL&)), parentWidget, TQT_SLOT(slotLoadToolbarFile(const KURL&)));
}
@@ -81,7 +81,7 @@ void QNewToolbarStuff::installResource()
}
QNewTemplateStuff::QNewTemplateStuff(const TQString &type, TQWidget *parentWidget)
- :KNewStuffSecure(type, parentWidget)
+ :TDENewStuffSecure(type, parentWidget)
{
connect(this, TQT_SIGNAL(openFile(const KURL&)), parentWidget, TQT_SLOT(slotFileOpen(const KURL&)));
}
diff --git a/quanta/utility/newstuff.h b/quanta/utility/newstuff.h
index 1975f998..c35be15b 100644
--- a/quanta/utility/newstuff.h
+++ b/quanta/utility/newstuff.h
@@ -20,7 +20,7 @@
#include <tqobject.h>
//kde includes
-#include <knewstuff/knewstuffsecure.h>
+#include <tdenewstuff/knewstuffsecure.h>
/**
Makes possible downloading and installing a DTEP resource files from a server.
@@ -29,14 +29,14 @@ Makes possible downloading and installing a DTEP resource files from a server.
class KURL;
-class QNewDTEPStuff: public KNewStuffSecure
+class QNewDTEPStuff: public TDENewStuffSecure
{
Q_OBJECT
public:
QNewDTEPStuff(const TQString &type, TQWidget *parentWidget=0)
- :KNewStuffSecure(type, parentWidget){};
+ :TDENewStuffSecure(type, parentWidget){};
~QNewDTEPStuff() {};
private:
@@ -48,7 +48,7 @@ Makes possible downloading and installing a Toolbar resource files from a server
@author Andras Mantia
*/
-class QNewToolbarStuff: public KNewStuffSecure
+class QNewToolbarStuff: public TDENewStuffSecure
{
Q_OBJECT
@@ -69,7 +69,7 @@ Makes possible downloading and installing a template resource files from a serve
@author Andras Mantia
*/
-class QNewTemplateStuff: public KNewStuffSecure
+class QNewTemplateStuff: public TDENewStuffSecure
{
Q_OBJECT
@@ -90,14 +90,14 @@ Makes possible downloading and installing a script resource files from a server.
@author Andras Mantia
*/
-class QNewScriptStuff: public KNewStuffSecure
+class QNewScriptStuff: public TDENewStuffSecure
{
Q_OBJECT
public:
QNewScriptStuff(const TQString &type, TQWidget *parentWidget=0)
- :KNewStuffSecure(type, parentWidget){};
+ :TDENewStuffSecure(type, parentWidget){};
~QNewScriptStuff() {};
private:
@@ -109,14 +109,14 @@ Makes possible downloading and installing a documentation resource files from a
@author Andras Mantia
*/
-class QNewDocStuff: public KNewStuffSecure
+class QNewDocStuff: public TDENewStuffSecure
{
Q_OBJECT
public:
QNewDocStuff(const TQString &type, TQWidget *parentWidget=0)
- :KNewStuffSecure(type, parentWidget){};
+ :TDENewStuffSecure(type, parentWidget){};
~QNewDocStuff() {};
private: