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 2949
Collapse All | Expand All

(-)a/kxsldbg/kxsldbgpart/libxsldbg/breakpoint.cpp (+4 lines)
Lines 283-289 breakPointItemNew(void) Link Here
283
 * Free memory associated with this break point
283
 * Free memory associated with this break point
284
 */
284
 */
285
void
285
void
286
#if LIBXML_VERSION >= 20908
287
breakPointItemFree(void *payload, const xmlChar * name)
288
#else
286
breakPointItemFree(void *payload, xmlChar * name)
289
breakPointItemFree(void *payload, xmlChar * name)
290
#endif
287
{
291
{
288
    Q_UNUSED(name);
292
    Q_UNUSED(name);
289
    if (payload) {
293
    if (payload) {
(-)a/kxsldbg/kxsldbgpart/libxsldbg/breakpoint.h (+4 lines)
Lines 486-492 extern "C" { Link Here
486
 */
486
 */
487
#endif
487
#endif
488
#endif
488
#endif
489
#if LIBXML_VERSION >= 20908
490
    void breakPointItemFree(void *payload, const xmlChar * name);
491
#else
489
    void breakPointItemFree(void *payload, xmlChar * name);
492
    void breakPointItemFree(void *payload, xmlChar * name);
493
#endif
490
494
491
495
492
496

Return to bug 2949