summaryrefslogtreecommitdiffstats
path: root/templates/annotated
diff options
context:
space:
mode:
Diffstat (limited to 'templates/annotated')
-rw-r--r--templates/annotated/basicapp.py4
-rw-r--r--templates/annotated/menuapp1.py4
-rw-r--r--templates/annotated/menuapp2.py4
-rw-r--r--templates/annotated/menuapp3.py4
-rw-r--r--templates/annotated/minimal.py4
-rw-r--r--templates/annotated/panelapplet.py2
-rw-r--r--templates/annotated/systray.py4
-rw-r--r--templates/annotated/systray1.py4
8 files changed, 15 insertions, 15 deletions
diff --git a/templates/annotated/basicapp.py b/templates/annotated/basicapp.py
index 04300b4..d124b76 100644
--- a/templates/annotated/basicapp.py
+++ b/templates/annotated/basicapp.py
@@ -35,8 +35,8 @@ copyright holder.
import sys
-from kdecore import KApplication, KCmdLineArgs, KAboutData
-from kdeui import KMainWindow
+from tdecore import KApplication, KCmdLineArgs, KAboutData
+from tdeui import KMainWindow
"""
Most PyKDE applications will need a main window - the is the top
diff --git a/templates/annotated/menuapp1.py b/templates/annotated/menuapp1.py
index 8a634bf..23184eb 100644
--- a/templates/annotated/menuapp1.py
+++ b/templates/annotated/menuapp1.py
@@ -45,8 +45,8 @@ import sys
from qt import QPopupMenu, SIGNAL
-from kdecore import KApplication, KCmdLineArgs, KAboutData, i18n, KStdAccel, KIcon, KIconLoader
-from kdeui import KMainWindow, KMessageBox
+from tdecore import KApplication, KCmdLineArgs, KAboutData, i18n, KStdAccel, KIcon, KIconLoader
+from tdeui import KMainWindow, KMessageBox
TOOLBAR_NEW = 1
TOOLBAR_OPEN = 2
diff --git a/templates/annotated/menuapp2.py b/templates/annotated/menuapp2.py
index 07523b8..6a5e894 100644
--- a/templates/annotated/menuapp2.py
+++ b/templates/annotated/menuapp2.py
@@ -43,8 +43,8 @@ import sys
from qt import QPopupMenu, SIGNAL
-from kdecore import KApplication, KCmdLineArgs, KAboutData, i18n
-from kdeui import KMainWindow, KMessageBox, KStdAction, KAction
+from tdecore import KApplication, KCmdLineArgs, KAboutData, i18n
+from tdeui import KMainWindow, KMessageBox, KStdAction, KAction
STATUSBAR_LEFT = 1
STATUSBAR_MIDDLE = 2
diff --git a/templates/annotated/menuapp3.py b/templates/annotated/menuapp3.py
index 1935ce5..3748d84 100644
--- a/templates/annotated/menuapp3.py
+++ b/templates/annotated/menuapp3.py
@@ -43,8 +43,8 @@ import sys
from qt import QPopupMenu, SIGNAL
-from kdecore import KApplication, KCmdLineArgs, KAboutData, i18n
-from kdeui import KMainWindow, KMessageBox, KStdAction, KAction, KActionCollection
+from tdecore import KApplication, KCmdLineArgs, KAboutData, i18n
+from tdeui import KMainWindow, KMessageBox, KStdAction, KAction, KActionCollection
STATUSBAR_LEFT = 1
STATUSBAR_MIDDLE = 2
diff --git a/templates/annotated/minimal.py b/templates/annotated/minimal.py
index a3e87c8..a84d39e 100644
--- a/templates/annotated/minimal.py
+++ b/templates/annotated/minimal.py
@@ -34,8 +34,8 @@ copyright holder.
import sys
-from kdecore import KApplication
-from kdeui import KMainWindow
+from tdecore import KApplication
+from tdeui import KMainWindow
"""
diff --git a/templates/annotated/panelapplet.py b/templates/annotated/panelapplet.py
index 009ee56..87ba057 100644
--- a/templates/annotated/panelapplet.py
+++ b/templates/annotated/panelapplet.py
@@ -31,7 +31,7 @@ dealings in this Software without prior written authorization from the
copyright holder.
"""
-from kdeui import PyKPanelApplet, KPanelApplet
+from tdeui import PyKPanelApplet, KPanelApplet
# Any panel applet written in Python must include THIS "factory" function
diff --git a/templates/annotated/systray.py b/templates/annotated/systray.py
index 41dc62a..8e86b10 100644
--- a/templates/annotated/systray.py
+++ b/templates/annotated/systray.py
@@ -30,8 +30,8 @@ copyright holder.
import sys
from qt import QWidget, SIGNAL
-from kdecore import KApplication, KIcon, KIconLoader
-from kdeui import KSystemTray
+from tdecore import KApplication, KIcon, KIconLoader
+from tdeui import KSystemTray
"""
Typically an application's "main window" will be a KMainWindow or
diff --git a/templates/annotated/systray1.py b/templates/annotated/systray1.py
index 99b7f03..bfff650 100644
--- a/templates/annotated/systray1.py
+++ b/templates/annotated/systray1.py
@@ -36,8 +36,8 @@ copyright holder.
import sys
from qt import QLabel, QWidget, SIGNAL
-from kdecore import KApplication, KIcon, KIconLoader
-from kdeui import KMainWindow, KSystemTray
+from tdecore import KApplication, KIcon, KIconLoader
+from tdeui import KMainWindow, KSystemTray
# This template uses KMainWindow as the main window widget
# It solves the problem described in systray.py by using