pike.git/
CHANGES
Branch:
Tag:
Non-build tags
All tags
No tags
2010-09-18
2010-09-18 21:42:56 by Marcus Comstedt <marcus@mc.pp.se>
d2f61e421fa4fa94393998a0fae7fe52ea61597e (
16
lines) (+
16
/-
0
)
[
Show
|
Annotate
]
Branch:
7.9
Document new GTK2 signal handler API.
Rev: CHANGES:1.215
40:
features, does not depend on external libraries and is less filling.
+
Incompatible changes
+
--------------------
+
+
o Signal handlers in GTK2 do no longer get their arguments in the
+
form of an array. The prototype for a signal handler which was
+
previously e.g.
+
+
int query_tooltip(GTK2.Widget w, array(mixed) params, mixed callback_arg)
+
+
now becomes
+
+
int query_tooltip(GTK2.Widget w, int x, int y, int keyboard_tooltip,
+
GTK2.GObject tooltip, mixed callback_arg)
+
+
Bug fixes ---------