[PyKDE] PyKDE-3.11alpha7 bug (KDE3.2.x, sip 3.10.1)
Jim Bublitz
jbublitz at nwinternet.com
Thu Apr 29 07:57:01 BST 2004
In PyKDE-3.11alpha7 there is one bug that will prevent compiling
on sip 3.10.1.
In kdecore/kmacroexpander.sip, change line 218:
218: sipConvertTo_QString (key, (void **)&sKey, &iserr);
to:
#if SIP_VERSION >= 0x040000
sipConvertTo_QString (key, (void **)&sKey, &iserr);
#else
sipConvertTo_QString (key, &sKey, &iserr);
#endif
This only applies for KDE >= 3.2.0 and doesn't affect releases
before alpha7.
Jim
More information about the PyQt
mailing list