summaryrefslogtreecommitdiffstats
path: root/examples/pytde-sampler/dialogs/about/aboutkde.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/pytde-sampler/dialogs/about/aboutkde.py')
-rw-r--r--examples/pytde-sampler/dialogs/about/aboutkde.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/pytde-sampler/dialogs/about/aboutkde.py b/examples/pytde-sampler/dialogs/about/aboutkde.py
index dc7390c..183c6fb 100644
--- a/examples/pytde-sampler/dialogs/about/aboutkde.py
+++ b/examples/pytde-sampler/dialogs/about/aboutkde.py
@@ -1,9 +1,9 @@
iconName = 'about_kde'
-labelText = 'KAboutKDE'
+labelText = 'TDEAboutKDE'
from qt import TQFrame, TQHBoxLayout, TQVBoxLayout, SIGNAL
from tdecore import i18n
-from tdeui import KAboutKDE, KPushButton, KTextEdit
+from tdeui import TDEAboutKDE, KPushButton, KTextEdit
helpText = ("Typically available via the applications 'Help' menu, this "
@@ -24,5 +24,5 @@ class MainFrame(TQFrame):
self.connect(self.button, SIGNAL('clicked()'), self.showAboutDialog)
def showAboutDialog(self):
- dlg = KAboutKDE(self)
+ dlg = TDEAboutKDE(self)
dlg.show()