2.19.6:

2010-02-23  Murray Cumming  <murrayc@murrayc.com>

	Tooltip: Added Added set_icon(Gio::Icon). Regenerated signal/properties defs.

	* gtk/src/gtk_signals.defs: Regenerated (Well, copied regenerated
	parts in to it) with extra_defs_gen.
	* gtk/src/tooltip.hg: Added set_icon(Gio::Icon).

2010-02-23  Murray Cumming  <murrayc@murrayc.com>

	Added new methods to wrap new C functions.

	* gtk/src/gtk_methods.defs: Regenerated with h2defs.py
	* gtk/src/paned.hg: Added get_handle_window().
	* gtk/src/widget.[hg|ccg]: get_requisition(): Reimplemented with the
	new gtk_widget_get_requisition() function.
	Added set/get_realized(), set/get_mapped() and style_attach().

2010-01-31  Murray Cumming  <murrayc@murrayc.com>

	Use Glib::wrap() instead of ->gobj().

	* gdk/src/*.ccg:
	* gtk/src/*.ccg: Use Glib::wrap() instead of ->gobj() in some places,
	so we are generally more forgiving of null RefPtrs<>, particular in case we
	have forgotten to wrap may-be-null parameters as extra method overrides.

2010-01-28  Murray Cumming  <murrayc@murrayc.com>

	Action: Undeprecate some methods.

	* gtk/src/action.hg: Do not deprecate connect_proxy(),
	disconnect_proxy(), block_activate_from() and unblock_activate_from(),
	because we cannot derive existing classes from Activatable (their
	replacement) until we can break ABI.
	Fixes bug #608109 (David Trowbridge)

2010-01-27  Murray Cumming  <murrayc@murrayc.com>

	EntryBuffer: Actually use GtkEntryBuffer.

	* gtk/src/entrybuffer.hg: Use GtkEntryBuffer, not GtkTextBuffer,
	avoiding a warning about registering the same type twice.
	Remove useless TextBuffer-relatated includes.

2010-01-27  Murray Cumming  <murrayc@murrayc.com>

	Widget: Un-deprecate get_action().

	* gtk/src/widget.hg: get_action(): Do not deprecate this because we
	cannot yet use its replacement (adding Activatable as a base class).
	Do not try to wrap a gtk_widget_get_related_action() function which
	no longer exists, if it ever did.
	* gtk/src/activatable.hg: Add a TODO to use this, though we
	already have TODOs on the widgets that should use it when we can break
	ABI.