diff options
author | gregory guy <gregory-tde@laposte.net> | 2021-11-06 17:01:39 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2022-01-12 03:34:47 +0100 |
commit | 976b20e0430a450c33a53970a089b5c001a1b42e (patch) | |
tree | 36a4c2fc90923d31b1c426762c6d18225d4b0e9e /custom/customw.c | |
parent | c1d6f4a527723728aeb28026f62461c146e3b716 (diff) | |
download | sip4-tqt-976b20e0430a450c33a53970a089b5c001a1b42e.tar.gz sip4-tqt-976b20e0430a450c33a53970a089b5c001a1b42e.zip |
Rename sip into sip-tqt in order to be conflict free with upstream.
This relates to bug 2699.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'custom/customw.c')
-rw-r--r-- | custom/customw.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/custom/customw.c b/custom/customw.c index 087a4b9..e554f2b 100644 --- a/custom/customw.c +++ b/custom/customw.c @@ -18,11 +18,11 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, * to be a builtin in the custom interpreter. The name of the function * will be the name of the module with "init" prepended. The modules * must be built as static libraries (using the -k flag to configure.py - * for SIP and PyTQt). + * for SIP-TQt and PyTQt). */ /* The sip module will be builtin. */ - extern void initsip(void); + extern void initsip_tqt(void); /* * Uncomment these (and in the structure below) to include the PyTQt @@ -44,7 +44,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, * the builtin modules. */ struct _inittab builtin_modules[] = { - {"sip", initsip}, + {"sip_tqt", initsip_tqt}, /* {"qt", initqt},*/ /* {"qtaxcontainer", initqtaxcontainer},*/ /* {"qtcanvas", initqtcanvas},*/ |