summaryrefslogtreecommitdiffstats
path: root/examples/pytde-sampler/dialogs/about/aboutapp.py
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-07 11:03:01 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-07 11:03:01 -0600
commit432ed6857a0a5904f0a2b96afa94f96a7ccc82d3 (patch)
treecce40e438df6f0c861ef9ee70094ab206ad84c17 /examples/pytde-sampler/dialogs/about/aboutapp.py
parentb3f48c5f7f807147c4d0338137b9a77525aeaefb (diff)
downloadpytde-432ed6857a0a5904f0a2b96afa94f96a7ccc82d3.tar.gz
pytde-432ed6857a0a5904f0a2b96afa94f96a7ccc82d3.zip
Rename KAbout to avoid conflicts with KDE4
Diffstat (limited to 'examples/pytde-sampler/dialogs/about/aboutapp.py')
-rw-r--r--examples/pytde-sampler/dialogs/about/aboutapp.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/pytde-sampler/dialogs/about/aboutapp.py b/examples/pytde-sampler/dialogs/about/aboutapp.py
index 820d50f..7fe2b75 100644
--- a/examples/pytde-sampler/dialogs/about/aboutapp.py
+++ b/examples/pytde-sampler/dialogs/about/aboutapp.py
@@ -1,15 +1,15 @@
iconName = 'about_kde'
-labelText = 'KAboutApplication'
+labelText = 'TDEAboutApplication'
from qt import TQFrame, TQHBoxLayout, TQVBoxLayout, SIGNAL
from tdecore import i18n
-from tdeui import KAboutApplication, KPushButton, KTextEdit
+from tdeui import TDEAboutApplication, KPushButton, KTextEdit
helpText = ("Typically available via the applications 'Help' menu, this "
"dialog presents the user with the applications About widget.")
-docParts = ('tdeui', 'KAboutDialog')
+docParts = ('tdeui', 'TDEAboutDialog')
class MainFrame(TQFrame):
def __init__(self, parent=None):
@@ -25,5 +25,5 @@ class MainFrame(TQFrame):
self.connect(self.button, SIGNAL('clicked()'), self.showAboutDialog)
def showAboutDialog(self):
- dlg = KAboutApplication(self)
+ dlg = TDEAboutApplication(self)
dlg.show()