projects
/
projects
/
chimara
/
chimara.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f5205d
)
Remove nonexistent function
author
Philip Chimento
<philip.chimento@gmail.com>
Sat, 25 Aug 2012 19:06:34 +0000
(21:06 +0200)
committer
Philip 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
patch
|
blob
|
history
diff --git
a/tests/glulxercise.c
b/tests/glulxercise.c
index 54113a4305afab31db8659a81032b480cef8fa6b..fc9a9b1c93d49f7021f71f2bf74f632d90ca24c7 100644
(file)
--- 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);