View | Details | Raw Unified | Return to bug 203563 | Differences between
and this patch

Collapse All | Expand All

(-)vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx (-2 / +1 lines)
Lines 436-445 dialog_remove_buttons( GtkDialog *pDialo Link Here
436
{
436
{
437
    g_return_if_fail( GTK_IS_DIALOG( pDialog ) );
437
    g_return_if_fail( GTK_IS_DIALOG( pDialog ) );
438
438
439
#if GTK_CHECK_VERSION(3,0,0)
440
#if GTK_CHECK_VERSION(3,12,0)
439
#if GTK_CHECK_VERSION(3,12,0)
441
    dialog_remove_buttons(gtk_dialog_get_header_bar(pDialog));
440
    dialog_remove_buttons(gtk_dialog_get_header_bar(pDialog));
442
#endif
441
#elif GTK_CHECK_VERSION(3,0,0)
443
    dialog_remove_buttons(gtk_dialog_get_action_area(pDialog));
442
    dialog_remove_buttons(gtk_dialog_get_action_area(pDialog));
444
#else
443
#else
445
    dialog_remove_buttons(pDialog->action_area);
444
    dialog_remove_buttons(pDialog->action_area);

Return to bug 203563