summaryrefslogtreecommitdiffstats
path: root/examples/pykde-sampler/dialogs/about/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/pykde-sampler/dialogs/about/__init__.py')
-rw-r--r--examples/pykde-sampler/dialogs/about/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/pykde-sampler/dialogs/about/__init__.py b/examples/pykde-sampler/dialogs/about/__init__.py
index d406216..ea1ad17 100644
--- a/examples/pykde-sampler/dialogs/about/__init__.py
+++ b/examples/pykde-sampler/dialogs/about/__init__.py
@@ -5,12 +5,12 @@ helpText = ("KDE has multiple dialog types to display information about your "
"applicaiton and environment. They provide a tremendous amount of functionality "
"and consistency. They're easy to use, and they're good for the environment!")
-from qt import QFrame, QVBoxLayout
+from qt import TQFrame, TQVBoxLayout
from tdeui import KTextEdit
-class MainFrame(QFrame):
+class MainFrame(TQFrame):
def __init__(self, parent=None):
- QFrame.__init__(self, parent)
- layout = QVBoxLayout(self)
+ TQFrame.__init__(self, parent)
+ layout = TQVBoxLayout(self)
self.text = KTextEdit(helpText, '', self)
layout.addWidget(self.text, 1)