summaryrefslogtreecommitdiffstats
path: root/custom/custom.c
diff options
context:
space:
mode:
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},*/