diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-19 13:43:56 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-19 13:44:28 +0100 |
commit | 340592693fd419e614df37fb957abb8306456cae (patch) | |
tree | c86d8bc0f812df6d487687631507a5a9e50b482a /vcl/unx | |
parent | b36dbb499e19fe8a497a48d7c78ad3cb5d40a83d (diff) |
gtk3: hacky fpicker button removal needs updating
because the gtk3 fpicker puts them in the new header bar
are now
Change-Id: I78334476b42366ffdc64da9460eb017c8bc61622
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx b/vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx index d6e082fd4eb4..89aa94e00348 100644 --- a/vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx +++ b/vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx @@ -425,7 +425,7 @@ dialog_remove_buttons( GtkDialog *pDialog ) GtkWidget *pActionArea; #if GTK_CHECK_VERSION(3,0,0) - pActionArea = gtk_dialog_get_action_area( pDialog ); + pActionArea = gtk_dialog_get_header_bar(pDialog); #else pActionArea = pDialog->action_area; #endif |