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-tdewebdev-3.5.13.2/kxsldbg/kxsldbgpart/libxsldbg/xsldbg.cpp.ORI (-4 / +2 lines)
Lines 975-983 Link Here
975
#endif
975
#endif
976
#ifdef LIBXML_DOCB_ENABLED
976
#ifdef LIBXML_DOCB_ENABLED
977
    if (optionsGetIntOption(OPTIONS_DOCBOOK))
977
    if (optionsGetIntOption(OPTIONS_DOCBOOK))
978
        doc = docbParseFile((char *)
978
        doc = xmlParseFile((char *) optionsGetStringOption(OPTIONS_DATA_FILE_NAME));
979
                            optionsGetStringOption(OPTIONS_DATA_FILE_NAME),
980
                            NULL);
981
    else
979
    else
982
#endif
980
#endif
983
981
Lines 1027-1033 Link Here
1027
#endif
1025
#endif
1028
#ifdef LIBXML_DOCB_ENABLED
1026
#ifdef LIBXML_DOCB_ENABLED
1029
    if (optionsGetIntOption(OPTIONS_DOCBOOK))
1027
    if (optionsGetIntOption(OPTIONS_DOCBOOK))
1030
        doc = docbParseFile((char *) path, NULL);
1028
        doc = xmlParseFile((char *) path);
1031
    else
1029
    else
1032
#endif
1030
#endif
1033
        doc = xmlSAXParseFile(&mySAXhdlr, (char *) path, 0);
1031
        doc = xmlSAXParseFile(&mySAXhdlr, (char *) path, 0);

Return to bug 1393