diff options
author | Michele Calgaro <[email protected]> | 2024-01-10 10:12:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-11 10:04:14 +0900 |
commit | e864982d59c8004ff41e59882a36ae8d2565bc44 (patch) | |
tree | 23dfc45175e2005e57f495b9db783e3ab1fe86bc | |
parent | 4d47ebf06fcc87ac3acd7ae2244c08233cdb28c7 (diff) | |
download | pytdeextensions-e864982d59c8004ff41e59882a36ae8d2565bc44.tar.gz pytdeextensions-e864982d59c8004ff41e59882a36ae8d2565bc44.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit dcf49643f4aa614aa2f92e7094b99cac6e14d61a)
-rw-r--r-- | app_templates/kdeapp/src/kdeappview.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app_templates/kdeapp/src/kdeappview.py b/app_templates/kdeapp/src/kdeappview.py index af2537a..69addb2 100644 --- a/app_templates/kdeapp/src/kdeappview.py +++ b/app_templates/kdeapp/src/kdeappview.py @@ -68,8 +68,8 @@ class KdeAppView(TQWidget): KMessageBox.error(self, i18n("Could not find a suitable HTML component")) return - TQObject.connect(self._html, SIGNAL("setWindowCaption(const TQString&)"), self.slotSetTitle) - TQObject.connect(self._html, SIGNAL("setStatusBarText(const TQString&)"), self.slotOnURL) + TQObject.connect(self._html, TQ_SIGNAL("setWindowCaption(const TQString&)"), self.slotSetTitle) + TQObject.connect(self._html, TQ_SIGNAL("setStatusBarText(const TQString&)"), self.slotOnURL) def print_(self,p,height,width): pass |