diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-20 00:05:23 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-20 00:05:23 -0600 |
commit | 6677c2f8c66333c3951e8830f8760065c7a29074 (patch) | |
tree | e45d51b044ce8575210fca1584852fbbe4742316 /examples/uimodules/uiwidgets.py | |
parent | 1d7616d07ef6f1e6c8131a861ddff208557825e3 (diff) | |
download | pytde-6677c2f8c66333c3951e8830f8760065c7a29074.tar.gz pytde-6677c2f8c66333c3951e8830f8760065c7a29074.zip |
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'examples/uimodules/uiwidgets.py')
-rw-r--r-- | examples/uimodules/uiwidgets.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/uimodules/uiwidgets.py b/examples/uimodules/uiwidgets.py index 6eb2592..35e6a34 100644 --- a/examples/uimodules/uiwidgets.py +++ b/examples/uimodules/uiwidgets.py @@ -3,7 +3,7 @@ import time, sys from qt import TQLabel, TQFrame, TQColor, TQPushButton, SIGNAL, TQButtonGroup, TQRadioButton, TQt, TQString, TQChar,\ TQWidget, TQTimer -from tdecore import KApplication +from tdecore import TDEApplication from tdeui import KEdit, KComboBox, KColorCombo, KEditListBox, KListBox, KLineEdit, KRestrictedLine,\ KSqueezedTextLabel, KFontChooser, KButtonBox, KColorButton, KColorCells,\ KColorPatch, KDualColorButton,\ @@ -118,7 +118,7 @@ class Page1: grp.show () self.page.show () - kapp = KApplication.kApplication () + kapp = TDEApplication.kApplication () kapp.processEvents () y = y + 195 |