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

(-)a/sipgen/gencode.c (-1 / +1 lines)
Lines 6171-6177 static void generateEmitters(classDef *cd, FILE *fp) Link Here
6171
6171
6172
                    prcode(fp,
6172
                    prcode(fp,
6173
"\n"
6173
"\n"
6174
"static pyqt3TQtSignal signals_%C[] = {\n"
6174
"static pyqt3QtSignal signals_%C[] = {\n"
6175
                        ,classFTQCName(cd));
6175
                        ,classFTQCName(cd));
6176
6176
6177
                    noIntro = FALSE;
6177
                    noIntro = FALSE;
(-)a/siplib/sip.h (-3 / +3 lines)
Lines 1505-1517 typedef int (*pyqt3EmitFunc)(sipSimpleWrapper *, PyObject *); Link Here
1505
/*
1505
/*
1506
 * Maps the name of a TQt signal to a wrapper function to emit it.
1506
 * Maps the name of a TQt signal to a wrapper function to emit it.
1507
 */
1507
 */
1508
typedef struct _pyqt3TQtSignal {
1508
typedef struct _pyqt3QtSignal {
1509
    /* The signal name. */
1509
    /* The signal name. */
1510
    const char *st_name;
1510
    const char *st_name;
1511
1511
1512
    /* The emitter function. */
1512
    /* The emitter function. */
1513
    pyqt3EmitFunc st_emitfunc;
1513
    pyqt3EmitFunc st_emitfunc;
1514
} pyqt3TQtSignal;
1514
} pyqt3QtSignal;
1515
1515
1516
1516
1517
/*
1517
/*
Lines 1525-1531 typedef struct _pyqt3ClassTypeDef { Link Here
1525
    sipClassTypeDef super;
1525
    sipClassTypeDef super;
1526
1526
1527
    /* The emit table for TQt signals. */
1527
    /* The emit table for TQt signals. */
1528
    pyqt3TQtSignal *qt3_emit;
1528
    pyqt3QtSignal *qt3_emit;
1529
} pyqt3ClassTypeDef;
1529
} pyqt3ClassTypeDef;
1530
1530
1531
1531

Return to bug 1560