Kaydet (Commit) b6d31d5a authored tarafından Caolán McNamara's avatar Caolán McNamara

gtk3: gtk_dialog_get_header_bar new in 3.12

Change-Id: Ifc63714b6b9e797b668cccc46052cb9d791122ea
üst 0032fc03
......@@ -425,7 +425,11 @@ dialog_remove_buttons( GtkDialog *pDialog )
GtkWidget *pActionArea;
#if GTK_CHECK_VERSION(3,0,0)
#if GTK_CHECK_VERSION(3,12,0)
pActionArea = gtk_dialog_get_header_bar(pDialog);
#else
pActionArea = gtk_dialog_get_action_area(pDialog);
#endif
#else
pActionArea = pDialog->action_area;
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment