mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-27 17:52:58 +02:00
Fix "it's" vs "its" confusion throughout the source. Patch by Will
* Fix "it's" vs "its" confusion throughout the source. Patch by Will Thompson. svn path=/trunk/; revision=7897
This commit is contained in:
@@ -76,7 +76,7 @@
|
||||
* <listitem><para>
|
||||
* The reference counting of #GClosure makes it easy to handle reentrancy
|
||||
* right; if a callback is removed while it is being invoked, the closure
|
||||
* and it's parameters won't be freed until the invocation finishes.
|
||||
* and its parameters won't be freed until the invocation finishes.
|
||||
* </para></listitem>
|
||||
* <listitem><para>
|
||||
* g_closure_invalidate() and invalidation notifiers allow callbacks to be
|
||||
@@ -538,7 +538,7 @@ g_closure_ref (GClosure *closure)
|
||||
* g_closure_invalidate:
|
||||
* @closure: GClosure to invalidate
|
||||
*
|
||||
* Sets a flag on the closure to indicate that it's calling
|
||||
* Sets a flag on the closure to indicate that its calling
|
||||
* environment has become invalid, and thus causes any future
|
||||
* invocations of g_closure_invoke() on this @closure to be
|
||||
* ignored. Also, invalidation notifiers installed on the closure will
|
||||
@@ -684,7 +684,7 @@ g_closure_remove_invalidate_notifier (GClosure *closure,
|
||||
g_return_if_fail (closure != NULL);
|
||||
g_return_if_fail (notify_func != NULL);
|
||||
|
||||
if (closure->is_invalid && closure->in_inotify && /* account removal of notify_func() while its called */
|
||||
if (closure->is_invalid && closure->in_inotify && /* account removal of notify_func() while it's called */
|
||||
((gpointer) closure->marshal) == ((gpointer) notify_func) &&
|
||||
closure->data == notify_data)
|
||||
closure->marshal = NULL;
|
||||
@@ -712,7 +712,7 @@ g_closure_remove_finalize_notifier (GClosure *closure,
|
||||
g_return_if_fail (closure != NULL);
|
||||
g_return_if_fail (notify_func != NULL);
|
||||
|
||||
if (closure->is_invalid && !closure->in_inotify && /* account removal of notify_func() while its called */
|
||||
if (closure->is_invalid && !closure->in_inotify && /* account removal of notify_func() while it's called */
|
||||
((gpointer) closure->marshal) == ((gpointer) notify_func) &&
|
||||
closure->data == notify_data)
|
||||
closure->marshal = NULL;
|
||||
|
Reference in New Issue
Block a user