diff options
author | Slávek Banko <[email protected]> | 2016-09-27 21:52:33 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-09-27 21:52:50 +0200 |
commit | 5bf80aeba9a1e9b9b91f3108c1a8d51bf378c4f0 (patch) | |
tree | b2cd1e79b5da092445819dd1f670e5dd39804c98 /examples/pytde-sampler/basic_widgets | |
parent | 1f5dba19f42778625953e74ef92229cbc42a059c (diff) | |
download | pytde-5bf80aeba9a1e9b9b91f3108c1a8d51bf378c4f0.tar.gz pytde-5bf80aeba9a1e9b9b91f3108c1a8d51bf378c4f0.zip |
Properly import python_tqt module
This relates to bug 2693
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 2749565477cea347d205d410e596d730a05941c9)
Diffstat (limited to 'examples/pytde-sampler/basic_widgets')
-rw-r--r-- | examples/pytde-sampler/basic_widgets/datepicker.py | 4 | ||||
-rw-r--r-- | examples/pytde-sampler/basic_widgets/historycombo.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/pytde-sampler/basic_widgets/datepicker.py b/examples/pytde-sampler/basic_widgets/datepicker.py index b0f74c6..a0d74ab 100644 --- a/examples/pytde-sampler/basic_widgets/datepicker.py +++ b/examples/pytde-sampler/basic_widgets/datepicker.py @@ -1,5 +1,5 @@ -from qt import TQFrame, TQStringList, TQVBoxLayout, SIGNAL, TQLabel, TQSizePolicy, TQt -from qttable import TQTable +from python_tqt.qt import TQFrame, TQStringList, TQVBoxLayout, SIGNAL, TQLabel, TQSizePolicy, TQt +from python_tqt.qttable import TQTable from tdeui import KTextEdit, KDatePicker, KDateWidget diff --git a/examples/pytde-sampler/basic_widgets/historycombo.py b/examples/pytde-sampler/basic_widgets/historycombo.py index 6bbc32e..e11c24f 100644 --- a/examples/pytde-sampler/basic_widgets/historycombo.py +++ b/examples/pytde-sampler/basic_widgets/historycombo.py @@ -1,4 +1,4 @@ -from qt import TQt, TQFrame, TQHBoxLayout, TQVBoxLayout, TQStringList, TQLabel, \ +from python_tqt.qt import TQt, TQFrame, TQHBoxLayout, TQVBoxLayout, TQStringList, TQLabel, \ SIGNAL, SLOT from tdeui import KHistoryCombo, KTextEdit |