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

(-)a/kmines/frame.cpp (-4 / +2 lines)
Lines 41-54 Link Here
41
41
42
    TQBitmap mask;
42
    TQBitmap mask;
43
    for (uint i=0; i<Nb_Pixmap_Types; i++) {
43
    for (uint i=0; i<Nb_Pixmap_Types; i++) {
44
        TQPixmap mask_pm = mask;
44
        drawPixmap(mask, (PixmapType)i, true);
45
        drawPixmap(mask_pm, (PixmapType)i, true);
46
        drawPixmap(_pixmaps[i], (PixmapType)i, false);
45
        drawPixmap(_pixmaps[i], (PixmapType)i, false);
47
        _pixmaps[i].setMask(mask);
46
        _pixmaps[i].setMask(mask);
48
    }
47
    }
49
    for (uint i=0; i<Nb_Advised; i++) {
48
    for (uint i=0; i<Nb_Advised; i++) {
50
        TQPixmap mask_pm = mask;
49
        drawAdvised(mask, i, true);
51
        drawAdvised(mask_pm, i, true);
52
        drawAdvised(_advised[i], i, false);
50
        drawAdvised(_advised[i], i, false);
53
        _advised[i].setMask(mask);
51
        _advised[i].setMask(mask);
54
    }
52
    }

Return to bug 1416