diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-07 11:03:01 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-07 11:03:01 -0600 |
commit | 432ed6857a0a5904f0a2b96afa94f96a7ccc82d3 (patch) | |
tree | cce40e438df6f0c861ef9ee70094ab206ad84c17 /examples/pytde-sampler/dialogs/about | |
parent | b3f48c5f7f807147c4d0338137b9a77525aeaefb (diff) | |
download | pytde-432ed6857a0a5904f0a2b96afa94f96a7ccc82d3.tar.gz pytde-432ed6857a0a5904f0a2b96afa94f96a7ccc82d3.zip |
Rename KAbout to avoid conflicts with KDE4
Diffstat (limited to 'examples/pytde-sampler/dialogs/about')
-rw-r--r-- | examples/pytde-sampler/dialogs/about/aboutapp.py | 8 | ||||
-rw-r--r-- | examples/pytde-sampler/dialogs/about/aboutkde.py | 6 |
2 files changed, 7 insertions, 7 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() 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() |