Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
fix some docs
Browse files Browse the repository at this point in the history
svn path=/trunk/; revision=7004
  • Loading branch information
Matthias Clasen committed Jun 11, 2008
1 parent 12fe212 commit 107d1d3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions docs/reference/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2008-06-11 Matthias Clasen <mclasen@redhat.com>

Bug 528172 – gtk_signal_handlers_unblock_* functions return value
amount of matched signals, not amount of actually unblocked.

* gobject/tmpl/signals.sgml: Fix documentation of return value
of functions that operate on matched signal handlers.

2008-06-11 Matthias Clasen <mclasen@redhat.com>

Bug 528717 – Misprint in the description of the parameter
Expand Down
12 changes: 6 additions & 6 deletions docs/reference/gobject/tmpl/signals.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ otherwise.
@closure: The closure the handlers will invoke.
@func: The C closure callback of the handlers (useless for non-C closures).
@data: The closure data of the handlers' closures.
@Returns: The amount of handlers that got blocked.
@Returns: The number of handlers that matched.


<!-- ##### FUNCTION g_signal_handlers_unblock_matched ##### -->
Expand All @@ -699,7 +699,7 @@ not currently blocked.
@closure: The closure the handlers will invoke.
@func: The C closure callback of the handlers (useless for non-C closures).
@data: The closure data of the handlers' closures.
@Returns: The amount of handlers that got unblocked.
@Returns: The number of handlers that matched.


<!-- ##### FUNCTION g_signal_handlers_disconnect_matched ##### -->
Expand All @@ -721,7 +721,7 @@ handlers otherwise.
@closure: The closure the handlers will invoke.
@func: The C closure callback of the handlers (useless for non-C closures).
@data: The closure data of the handlers' closures.
@Returns: The amount of handlers that got disconnected.
@Returns: The number of handlers that matched.


<!-- ##### FUNCTION g_signal_handler_is_connected ##### -->
Expand All @@ -742,7 +742,7 @@ Blocks all handlers on an instance that match @func and @data.
@instance: The instance to block handlers from.
@func: The C closure callback of the handlers (useless for non-C closures).
@data: The closure data of the handlers' closures.
@Returns: The number of handlers that got blocked.
@Returns: The number of handlers that matched.


<!-- ##### MACRO g_signal_handlers_unblock_by_func ##### -->
Expand All @@ -753,7 +753,7 @@ Unblocks all handlers on an instance that match @func and @data.
@instance: The instance to unblock handlers from.
@func: The C closure callback of the handlers (useless for non-C closures).
@data: The closure data of the handlers' closures.
@Returns: The number of handlers that got unblocked.
@Returns: The number of handlers that matched.


<!-- ##### MACRO g_signal_handlers_disconnect_by_func ##### -->
Expand All @@ -764,7 +764,7 @@ Disconnects all handlers on an instance that match @func and @data.
@instance: The instance to remove handlers from.
@func: The C closure callback of the handlers (useless for non-C closures).
@data: The closure data of the handlers' closures.
@Returns: The number of handlers that got disconnected.
@Returns: The number of handlers that matched.


<!-- ##### FUNCTION g_signal_has_handler_pending ##### -->
Expand Down

0 comments on commit 107d1d3

Please sign in to comment.