Remove nonexistent function
authorPhilip Chimento <philip.chimento@gmail.com>
Sat, 25 Aug 2012 19:06:34 +0000 (21:06 +0200)
committerPhilip Chimento <philip.chimento@gmail.com>
Sat, 25 Aug 2012 19:06:34 +0000 (21:06 +0200)
Apparently gtk_box_pack_end_with_defaults() has been deprecated for a
while and does not exist now in GTK 3.

tests/glulxercise.c

index 54113a4305afab31db8659a81032b480cef8fa6b..fc9a9b1c93d49f7021f71f2bf74f632d90ca24c7 100644 (file)
@@ -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);