diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-24 10:57:03 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-24 10:57:03 +0900 |
commit | 456d0fb6a207e9c80593967f2e37ddd21d32f5a4 (patch) | |
tree | 73634b50a49e2c2d51939e257016441a68810e64 | |
parent | db3abe1860a5c9afa4893cb59499868f6ff1f5aa (diff) | |
download | pytqt-456d0fb6a207e9c80593967f2e37ddd21d32f5a4.tar.gz pytqt-456d0fb6a207e9c80593967f2e37ddd21d32f5a4.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | sip/tqt/tqapplication.sip | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sip/tqt/tqapplication.sip b/sip/tqt/tqapplication.sip index 8875566..e0d88dc 100644 --- a/sip/tqt/tqapplication.sip +++ b/sip/tqt/tqapplication.sip @@ -419,12 +419,12 @@ enum TQtMsgType { }; -SIP_PYCALLABLE tqInstallMsgHandler(SIP_PYCALLABLE /AllowNone/); +SIP_PYCALLABLE qInstallMsgHandler(SIP_PYCALLABLE /AllowNone/); %MethodCode void (*old)(TQtMsgType, const char *); // Treat None as the default handler. - old = tqInstallMsgHandler((a0 != Py_None) ? pytqtMsgHandler : 0); + old = qInstallMsgHandler((a0 != Py_None) ? pytqtMsgHandler : 0); // If we recognise the old handler, then return it. Otherwise return // the default handler. This doesn't exactly mimic the TQt behaviour |