summaryrefslogtreecommitdiffstats
path: root/examples/pytde-sampler/qt_widgets
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-10 10:12:35 +0900
committerMichele Calgaro <[email protected]>2024-01-11 10:03:49 +0900
commitdb88dbbdb24193c81d3b4b893553b78cddf32eb3 (patch)
tree392ed8ab9606ee7a8a67b201e84a8b4a9e8ddb5a /examples/pytde-sampler/qt_widgets
parentbab19cc2a24fceccebe4477c4af99a6a162ef998 (diff)
downloadpytde-db88dbbdb24193c81d3b4b893553b78cddf32eb3.tar.gz
pytde-db88dbbdb24193c81d3b4b893553b78cddf32eb3.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit d94985267d6f224c5a9833736762f466d264374d)
Diffstat (limited to 'examples/pytde-sampler/qt_widgets')
-rw-r--r--examples/pytde-sampler/qt_widgets/__init__.py2
-rw-r--r--examples/pytde-sampler/qt_widgets/table.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/pytde-sampler/qt_widgets/__init__.py b/examples/pytde-sampler/qt_widgets/__init__.py
index 982bc9c..83a29b9 100644
--- a/examples/pytde-sampler/qt_widgets/__init__.py
+++ b/examples/pytde-sampler/qt_widgets/__init__.py
@@ -4,7 +4,7 @@ iconName = 'designer'
helpText = """TQt provides a rich set of widgets for application use.
Select the children of this item to see for yourself."""
-from PyTQt.tqt import TQFrame, TQVBoxLayout, SIGNAL
+from PyTQt.tqt import TQFrame, TQVBoxLayout, TQ_SIGNAL
from tdeui import KTextEdit
diff --git a/examples/pytde-sampler/qt_widgets/table.py b/examples/pytde-sampler/qt_widgets/table.py
index 0cdc4ab..bf12a9a 100644
--- a/examples/pytde-sampler/qt_widgets/table.py
+++ b/examples/pytde-sampler/qt_widgets/table.py
@@ -8,7 +8,7 @@ editable table widget.'
import csv
import os
-from PyTQt.tqt import TQFrame, TQStringList, TQVBoxLayout, SIGNAL
+from PyTQt.tqt import TQFrame, TQStringList, TQVBoxLayout, TQ_SIGNAL
from PyTQt.tqttable import TQTable
from tdeui import KTextEdit