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

(-)trinity-python-tqt-14.0.0~pre36+d3f27c3e/sip/qt/qobject.sip.ORI (-1 / +1 lines)
Lines 2196-2202 Link Here
2196
    // See if it is a TQt signal.
2196
    // See if it is a TQt signal.
2197
    if (*sig == '2')
2197
    if (*sig == '2')
2198
    {
2198
    {
2199
        pyqt3TQtSignal *tab;
2199
        pyqt3QtSignal *tab;
2200
2200
2201
        // Search the table.
2201
        // Search the table.
2202
        for (tab = ((pyqt3ClassTypeDef *)((sipWrapperType *)(self->ob_type))->type)->qt3_emit; tab->st_name != NULL; ++tab)
2202
        for (tab = ((pyqt3ClassTypeDef *)((sipWrapperType *)(self->ob_type))->type)->qt3_emit; tab->st_name != NULL; ++tab)
(-)trinity-python-tqt-14.0.0~pre36+d3f27c3e/configure.py.ORI (+6 lines)
Lines 321-326 Link Here
321
                makefile.extra_include_dirs.append(qt_dir + "/src/3rdparty/zlib")
321
                makefile.extra_include_dirs.append(qt_dir + "/src/3rdparty/zlib")
322
            makefile.extra_include_dirs.append(os.path.join(src_dir, "pyuic3"))
322
            makefile.extra_include_dirs.append(os.path.join(src_dir, "pyuic3"))
323
            
323
            
324
            if not os.access("pyuic3", os.F_OK):
325
                os.mkdir("pyuic3")
326
324
            makefile.generate()
327
            makefile.generate()
325
            tool_dirs.append("pyuic3")
328
            tool_dirs.append("pyuic3")
326
329
Lines 350-355 Link Here
350
353
351
            makefile.extra_include_dirs.append(os.path.join(src_dir, "pylupdate3"))
354
            makefile.extra_include_dirs.append(os.path.join(src_dir, "pylupdate3"))
352
355
356
            if not os.access("pylupdate3", os.F_OK):
357
                os.mkdir("pylupdate3")
358
353
            makefile.generate()
359
            makefile.generate()
354
            tool_dirs.append("pylupdate3")
360
            tool_dirs.append("pylupdate3")
355
        elif qt_version >= 0x020000:
361
        elif qt_version >= 0x020000:

Return to bug 1560