From 41316dd53848f7670369f041ce49587a1552e5a5 Mon Sep 17 00:00:00 2001 From: Philip Chimento Date: Sat, 25 Aug 2012 21:06:34 +0200 Subject: [PATCH] Remove nonexistent function Apparently gtk_box_pack_end_with_defaults() has been deprecated for a while and does not exist now in GTK 3. --- tests/glulxercise.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/glulxercise.c b/tests/glulxercise.c index 54113a4..fc9a9b1 100644 --- a/tests/glulxercise.c +++ b/tests/glulxercise.c @@ -94,7 +94,7 @@ main(int argc, char *argv[]) w->stop = LOAD_WIDGET("stop"); w->interp = chimara_if_new(); gtk_widget_set_size_request(w->interp, 500, 600); - gtk_box_pack_end_defaults(GTK_BOX(vbox), w->interp); + gtk_box_pack_end(GTK_BOX(vbox), w->interp, TRUE, TRUE, 0); chimara_glk_set_css_from_string(CHIMARA_GLK(w->interp), "buffer { font-size: 12; } buffer.input { color: #00a; font-style: italic; }"); chimara_glk_set_spacing(CHIMARA_GLK(w->interp), 1); -- 2.30.2