summaryrefslogtreecommitdiffstats
path: root/custom/custom.c
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2021-11-06 17:01:39 +0100
committerSlávek Banko <slavek.banko@axis.cz>2022-01-12 03:34:47 +0100
commit976b20e0430a450c33a53970a089b5c001a1b42e (patch)
tree36a4c2fc90923d31b1c426762c6d18225d4b0e9e /custom/custom.c
parentc1d6f4a527723728aeb28026f62461c146e3b716 (diff)
downloadsip4-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/custom.c')
-rw-r--r--custom/custom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/custom/custom.c b/custom/custom.c
index f7888af..013f988 100644
--- a/custom/custom.c
+++ b/custom/custom.c
@@ -14,11 +14,11 @@ int main(int argc, char **argv)
* 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
@@ -40,7 +40,7 @@ int main(int argc, char **argv)
* the builtin modules.
*/
struct _inittab builtin_modules[] = {
- {"sip", initsip},
+ {"sip_tqt", initsip_tqt},
/* {"qt", initqt},*/
/* {"qtaxcontainer", initqtaxcontainer},*/
/* {"qtcanvas", initqtcanvas},*/