summaryrefslogtreecommitdiffstats
path: root/examples/pytde-sampler/dialogs/about
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/dialogs/about
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/dialogs/about')
-rw-r--r--examples/pytde-sampler/dialogs/about/aboutapp.py4
-rw-r--r--examples/pytde-sampler/dialogs/about/abouttde.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/pytde-sampler/dialogs/about/aboutapp.py b/examples/pytde-sampler/dialogs/about/aboutapp.py
index 737fe57..f5b6d38 100644
--- a/examples/pytde-sampler/dialogs/about/aboutapp.py
+++ b/examples/pytde-sampler/dialogs/about/aboutapp.py
@@ -1,7 +1,7 @@
iconName = 'about_kde'
labelText = 'TDEAboutApplication'
-from PyTQt.tqt import TQFrame, TQHBoxLayout, TQVBoxLayout, SIGNAL
+from PyTQt.tqt import TQFrame, TQHBoxLayout, TQVBoxLayout, TQ_SIGNAL
from tdecore import i18n
from tdeui import TDEAboutApplication, KPushButton, KTextEdit
@@ -22,7 +22,7 @@ class MainFrame(TQFrame):
buttonlayout.addWidget(self.button)
buttonlayout.addStretch(1)
layout.addStretch(1)
- self.connect(self.button, SIGNAL('clicked()'), self.showAboutDialog)
+ self.connect(self.button, TQ_SIGNAL('clicked()'), self.showAboutDialog)
def showAboutDialog(self):
dlg = TDEAboutApplication(self)
diff --git a/examples/pytde-sampler/dialogs/about/abouttde.py b/examples/pytde-sampler/dialogs/about/abouttde.py
index c48e83f..883a1bf 100644
--- a/examples/pytde-sampler/dialogs/about/abouttde.py
+++ b/examples/pytde-sampler/dialogs/about/abouttde.py
@@ -1,7 +1,7 @@
iconName = 'about_kde'
labelText = 'TDEAboutTDE'
-from PyTQt.tqt import TQFrame, TQHBoxLayout, TQVBoxLayout, SIGNAL
+from PyTQt.tqt import TQFrame, TQHBoxLayout, TQVBoxLayout, TQ_SIGNAL
from tdecore import i18n
from tdeui import TDEAboutKDE, KPushButton, KTextEdit
@@ -21,7 +21,7 @@ class MainFrame(TQFrame):
buttonlayout.addWidget(self.button)
buttonlayout.addStretch(1)
layout.addStretch(1)
- self.connect(self.button, SIGNAL('clicked()'), self.showAboutDialog)
+ self.connect(self.button, TQ_SIGNAL('clicked()'), self.showAboutDialog)
def showAboutDialog(self):
dlg = TDEAboutKDE(self)