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 23:23:02 +0900
commitf662ab3046d4c140853bca3e3a408241e19b1853 (patch)
treeae176e12c11aa948ce3f63bb224ef708aa1b28e8
parent2d2a66210c4827dd2469d4fde55bf2c9aab81b5a (diff)
downloadpytqt-r14.1.x.tar.gz
pytqt-r14.1.x.zip
Fix issue #39. Sip defines those as int fields in the generated coder14.1.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit a44a74002dfea8a3af23855364555bf35ede1d09)
-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