https://bugs.freedesktop.org/show_bug.cgi?id=68006

--- Comment #1 from Caolán McNamara <[email protected]> ---
Nothing to do with libreoffice really, that beep should route to either of
these two beep impls...

//gtk
void GtkSalFrame::Beep()
{
    gdk_display_beep( getGdkDisplay() );
}

//generic
void SalDisplay::Beep() const
{
    XBell( pDisp_, 100 );
}

where presumably gtk just calls XBell as well, see if the following beeps for
you as well...

#include <X11/Xlib.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main()
{
    Display *display;
    Window window;

    /* open connection with the server */
    display = XOpenDisplay(NULL);
    if (display == NULL)
    {
        fprintf(stderr, "Cannot open display\n");
        exit(1);
    }

    XBell(display, 100);

    /* close connection to server */
    XCloseDisplay(display);

    return 0;
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to