diff options
Diffstat (limited to 'gtk/gtkstatusbar.c')
-rw-r--r-- | gtk/gtkstatusbar.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/gtkstatusbar.c b/gtk/gtkstatusbar.c index b7aba0fdb9..eeabaae018 100644 --- a/gtk/gtkstatusbar.c +++ b/gtk/gtkstatusbar.c @@ -50,9 +50,9 @@ * is complete in an FTP client, for example). * * Status bars in GTK+ maintain a stack of messages. The message at - * the top of the each bar's stack is the one that will currently be displayed. + * the top of the each bar’s stack is the one that will currently be displayed. * - * Any messages added to a statusbar's stack must specify a + * Any messages added to a statusbar’s stack must specify a * context id that is used to uniquely identify * the source of a message. This context id can be generated by * gtk_statusbar_get_context_id(), given a message and the statusbar that @@ -66,7 +66,7 @@ * * Status bars are created using gtk_statusbar_new(). * - * Messages are added to the bar's stack with gtk_statusbar_push(). + * Messages are added to the bar’s stack with gtk_statusbar_push(). * * The message at the top of the stack can be removed using * gtk_statusbar_pop(). A message can be removed from anywhere in the @@ -304,11 +304,11 @@ gtk_statusbar_msg_free (GtkStatusbarMsg *msg) /** * gtk_statusbar_push: * @statusbar: a #GtkStatusbar - * @context_id: the message's context id, as returned by + * @context_id: the message’s context id, as returned by * gtk_statusbar_get_context_id() * @text: the message to add to the statusbar * - * Pushes a new message onto a statusbar's stack. + * Pushes a new message onto a statusbar’s stack. * * Returns: a message id that can be used with * gtk_statusbar_remove(). @@ -343,7 +343,7 @@ gtk_statusbar_push (GtkStatusbar *statusbar, * @statusbar: a #GtkStatusbar * @context_id: a context identifier * - * Removes the first message in the #GtkStatusbar's stack + * Removes the first message in the #GtkStatusbar’s stack * with the given context id. * * Note that this may not change the displayed message, if @@ -394,7 +394,7 @@ gtk_statusbar_pop (GtkStatusbar *statusbar, * @context_id: a context identifier * @message_id: a message identifier, as returned by gtk_statusbar_push() * - * Forces the removal of a message from a statusbar's stack. + * Forces the removal of a message from a statusbar’s stack. * The exact @context_id and @message_id must be specified. */ void |