summaryrefslogtreecommitdiffstats
path: root/src/newstuff/newscript.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-03-07 11:06:50 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-03-08 11:23:38 +0900
commit180ea1fc8d5e4c89a5082649aa9d2ba4190ef0dd (patch)
tree16989b14ce1f4239405eca7fcc2a38ca172c41ae /src/newstuff/newscript.cpp
parent41a6fb44cdeab6944d6db766b473f675930af8e6 (diff)
downloadtellico-remove/kde-is-version.tar.gz
tellico-remove/kde-is-version.zip
Remove use of KDE_IS_VERSIONremove/kde-is-version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/newstuff/newscript.cpp')
-rw-r--r--src/newstuff/newscript.cpp13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/newstuff/newscript.cpp b/src/newstuff/newscript.cpp
index 4ec83e3..a0d2b8d 100644
--- a/src/newstuff/newscript.cpp
+++ b/src/newstuff/newscript.cpp
@@ -17,15 +17,12 @@
#include <kurl.h>
#include <tqwidget.h>
+#include <tdenewstuff/knewstuffsecure.h>
using Tellico::NewStuff::NewScript;
NewScript::NewScript(Manager* manager_, TQWidget* parentWidget_)
-#if KDE_IS_VERSION(3,3,90)
: TDENewStuffSecure(TQString::fromLatin1("tellico script"), parentWidget_)
-#else
- : TQObject(parentWidget_)
-#endif
, m_manager(manager_), m_success(false) {
}
@@ -37,12 +34,4 @@ void NewScript::installResource() {
m_url = u;
}
-#if KDE_IS_VERSION(3,3,90)
-#include <tdenewstuff/knewstuffsecure.h>
-#define SUPERCLASS TDENewStuffSecure
-#else
-#define SUPERCLASS TQObject
-#endif
-
#include "newscript.moc"
-#undef SUPERCLASS