diff options
author | Slávek Banko <[email protected]> | 2016-09-28 03:03:35 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-09-28 03:03:35 +0200 |
commit | b7a62620df1c214340b86735a73d4c3b3b834565 (patch) | |
tree | 96a312c3bdaa3bb44f490232fcc5b4a3a61e629f /examples/pytde-sampler/xwin | |
parent | 2749565477cea347d205d410e596d730a05941c9 (diff) | |
download | pytde-b7a62620df1c214340b86735a73d4c3b3b834565.tar.gz pytde-b7a62620df1c214340b86735a73d4c3b3b834565.zip |
Properly import python_tqt module - second part
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'examples/pytde-sampler/xwin')
-rw-r--r-- | examples/pytde-sampler/xwin/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pytde-sampler/xwin/__init__.py b/examples/pytde-sampler/xwin/__init__.py index 34787fd..2049b8f 100644 --- a/examples/pytde-sampler/xwin/__init__.py +++ b/examples/pytde-sampler/xwin/__init__.py @@ -4,7 +4,7 @@ iconName = 'kcmx' helpText = """KDE and PyKDE allow interaction with the X Window system. Check out the nifty samples below.""" -from qt import TQFrame, TQLabel, TQVBoxLayout +from python_tqt.qt import TQFrame, TQLabel, TQVBoxLayout class MainFrame(TQFrame): def __init__(self, parent=None): |