summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-08-31 18:59:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-08-31 18:59:12 +0900
commita44a74002dfea8a3af23855364555bf35ede1d09 (patch)
tree51d0eedefbf0240d20067cc51ad9a0ab4542b92c
parent86f355f4d221d9d10e39d001994fef0c9f0f1ab4 (diff)
downloadpytqt-a44a74002dfea8a3af23855364555bf35ede1d09.tar.gz
pytqt-a44a74002dfea8a3af23855364555bf35ede1d09.zip
Fix issue #39. Sip defines those as int fields in the generated codeHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--sip/tqt/tqtmod.sip4
1 files changed, 2 insertions, 2 deletions
diff --git a/sip/tqt/tqtmod.sip b/sip/tqt/tqtmod.sip
index b9dc958..0c9ace5 100644
--- a/sip/tqt/tqtmod.sip
+++ b/sip/tqt/tqtmod.sip
@@ -28,11 +28,11 @@
%Include copying.sip
-unsigned PYTQT_VERSION;
+int PYTQT_VERSION;
const char *PYTQT_VERSION_STR;
%ModuleCode
-static unsigned PYTQT_VERSION = 0x031201;
+static int PYTQT_VERSION = 0x031201;
static const char *PYTQT_VERSION_STR = "3.18.1";
%End