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

(-)a/twin/client.cpp (-2 / +2 lines)
Lines 509-515 bool Client::isModalSystemNotification() const Link Here
509
    int format, result;
509
    int format, result;
510
    unsigned long n, left;
510
    unsigned long n, left;
511
    result = XGetWindowProperty(tqt_xdisplay(), window(), atoms->net_wm_system_modal_notification, 0L, 1L, False, XA_CARDINAL, &actual, &format, &n, &left, /*(unsigned char **)*/ &data);
511
    result = XGetWindowProperty(tqt_xdisplay(), window(), atoms->net_wm_system_modal_notification, 0L, 1L, False, XA_CARDINAL, &actual, &format, &n, &left, /*(unsigned char **)*/ &data);
512
    if (result == Success && data != None && format == 32 )
512
    if (result == Success && data && format == 32 )
513
        {
513
        {
514
        return TRUE;
514
        return TRUE;
515
        }
515
        }
Lines 2975-2981 bool Client::getWindowOpacity() //query translucency settings from X, returns tr Link Here
2975
    int format, result;
2975
    int format, result;
2976
    unsigned long n, left;
2976
    unsigned long n, left;
2977
    result = XGetWindowProperty(tqt_xdisplay(), window(), atoms->net_wm_window_opacity, 0L, 1L, False, XA_CARDINAL, &actual, &format, &n, &left, /*(unsigned char **)*/ &data);
2977
    result = XGetWindowProperty(tqt_xdisplay(), window(), atoms->net_wm_window_opacity, 0L, 1L, False, XA_CARDINAL, &actual, &format, &n, &left, /*(unsigned char **)*/ &data);
2978
    if (result == Success && data != None && format == 32 )
2978
    if (result == Success && data && format == 32 )
2979
        {
2979
        {
2980
        opacity_ = *reinterpret_cast< long* >( data );
2980
        opacity_ = *reinterpret_cast< long* >( data );
2981
        custom_opacity = true;
2981
        custom_opacity = true;

Return to bug 2789