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

(-)a/kxsldbg/kxsldbgpart/libxsldbg/xsldbg.cpp (+8 lines)
Lines 975-983 xsldbgLoadXmlData(void) 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
#       if LIBXML_VERSION >= 20600
979
        doc = xmlParseFile((char *) optionsGetStringOption(OPTIONS_DATA_FILE_NAME));
980
#       else
978
        doc = docbParseFile((char *)
981
        doc = docbParseFile((char *)
979
                            optionsGetStringOption(OPTIONS_DATA_FILE_NAME),
982
                            optionsGetStringOption(OPTIONS_DATA_FILE_NAME),
980
                            NULL);
983
                            NULL);
984
#       endif
981
    else
985
    else
982
#endif
986
#endif
983
987
Lines 1027-1033 xsldbgLoadXmlTemporary(const xmlChar * path) Link Here
1027
#endif
1031
#endif
1028
#ifdef LIBXML_DOCB_ENABLED
1032
#ifdef LIBXML_DOCB_ENABLED
1029
    if (optionsGetIntOption(OPTIONS_DOCBOOK))
1033
    if (optionsGetIntOption(OPTIONS_DOCBOOK))
1034
#       if LIBXML_VERSION >= 20600
1035
        doc = xmlParseFile((char *) path);
1036
#       else
1030
        doc = docbParseFile((char *) path, NULL);
1037
        doc = docbParseFile((char *) path, NULL);
1038
#       endif
1031
    else
1039
    else
1032
#endif
1040
#endif
1033
        doc = xmlSAXParseFile(&mySAXhdlr, (char *) path, 0);
1041
        doc = xmlSAXParseFile(&mySAXhdlr, (char *) path, 0);

Return to bug 1393