summaryrefslogtreecommitdiffstats
path: root/src/newstuff/newscript.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/newstuff/newscript.h')
-rw-r--r--src/newstuff/newscript.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/newstuff/newscript.h b/src/newstuff/newscript.h
index dbbfc9f..463f2a5 100644
--- a/src/newstuff/newscript.h
+++ b/src/newstuff/newscript.h
@@ -14,16 +14,8 @@
#ifndef TELLICO_NEWSTUFF_NEWSCRIPT_H
#define TELLICO_NEWSTUFF_NEWSCRIPT_H
-#include <tdeversion.h>
#include <kurl.h>
-
-#if KDE_IS_VERSION(3,3,90)
#include <tdenewstuff/knewstuffsecure.h>
-#define SUPERCLASS TDENewStuffSecure
-#else
-#define SUPERCLASS TQObject
-#endif
-
#include <tqobject.h>
namespace Tellico {
@@ -31,7 +23,7 @@ namespace Tellico {
class Manager;
-class NewScript : public SUPERCLASS {
+class NewScript : public TDENewStuffSecure {
TQ_OBJECT
@@ -46,10 +38,6 @@ private:
virtual void installResource();
Manager* m_manager;
-#if !KDE_IS_VERSION(3,3,90)
- // TDENewStuffSecure has a protected variable
- TQString m_tarName;
-#endif
KURL m_url;
bool m_success : 1;
};
@@ -57,5 +45,4 @@ private:
}
}
-#undef SUPERCLASS
#endif