By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1393
Collapse All | Expand All

(-)trinity-python-trinity-3.5.13.2/sip/kdeui/keditlistbox.sip.ORI (-2 / +2 lines)
Lines 114-120 Link Here
114
    sipCpp->insertStrList (strings, n, a1);
114
    sipCpp->insertStrList (strings, n, a1);
115
    Py_END_ALLOW_THREADS
115
    Py_END_ALLOW_THREADS
116
116
117
    sipFree((ANY *)strings);
117
    sipFree((void *)strings);
118
%End
118
%End
119
119
120
    void                 insertItem (const QString&, int = -1);
120
    void                 insertItem (const QString&, int = -1);
Lines 194-200 Link Here
194
194
195
		if ((s = PyString_AsString(PyList_GetItem(lst,i))) == NULL)
195
		if ((s = PyString_AsString(PyList_GetItem(lst,i))) == NULL)
196
		{
196
		{
197
			sipFree((ANY *)str);
197
			sipFree((void *)str);
198
			return NULL;
198
			return NULL;
199
		}
199
		}
200
200
(-)trinity-python-trinity-3.5.13.2/sip/kdeui/qxembed.sip.ORI (-1 / +1 lines)
Lines 72-78 Link Here
72
    sipRes = QXEmbed::processClientCmdline (a0, n, strings);
72
    sipRes = QXEmbed::processClientCmdline (a0, n, strings);
73
    Py_END_ALLOW_THREADS
73
    Py_END_ALLOW_THREADS
74
74
75
    sipFree((ANY *)strings);
75
    sipFree((void *)strings);
76
%End
76
%End
77
77
78
78

Return to bug 1393