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 (+2 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
            os.mkdir("pyuic3")
324
            makefile.generate()
325
            makefile.generate()
325
            tool_dirs.append("pyuic3")
326
            tool_dirs.append("pyuic3")
326
327
Lines 350-355 Link Here
350
351
351
            makefile.extra_include_dirs.append(os.path.join(src_dir, "pylupdate3"))
352
            makefile.extra_include_dirs.append(os.path.join(src_dir, "pylupdate3"))
352
353
354
            os.mkdir("pylupdate3")
353
            makefile.generate()
355
            makefile.generate()
354
            tool_dirs.append("pylupdate3")
356
            tool_dirs.append("pylupdate3")
355
        elif qt_version >= 0x020000:
357
        elif qt_version >= 0x020000:

Return to bug 1560