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

(-)a/tdeui/ksharedpixmap.cpp (-3 / +2 lines)
Lines 160-168 bool KSharedPixmap::x11Event(XEvent *event) Link Here
160
    void *drawable_id = (void *) pixmap_id;
160
    void *drawable_id = (void *) pixmap_id;
161
    Drawable pixmap = *(Drawable*) drawable_id;
161
    Drawable pixmap = *(Drawable*) drawable_id;
162
162
163
    Status status = XGetGeometry(tqt_xdisplay(), pixmap, &root, &dummy, &dummy, &width, &height, &udummy, &udummy);
163
    if (!XGetGeometry(tqt_xdisplay(), pixmap, &root, &dummy, &dummy, 
164
164
                      &width, &height, &udummy, &udummy))
165
    if (status == BadDrawable)
166
        return false;
165
        return false;
167
166
168
    if (d->rect.isEmpty())
167
    if (d->rect.isEmpty())

Return to bug 1161