summaryrefslogtreecommitdiff
path: root/gtk/gtkaccellabel.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-05 13:07:34 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-05 15:08:42 -0500
commit2a45418b673d10f60e9334ebcfa493f125d26e02 (patch)
treebd459a39a8aae3ade27524b5e1199eb38d972c25 /gtk/gtkaccellabel.c
parentc3dfb17031842458e86907e8c1d3a1ca4c442a8c (diff)
downloadgtk+-2a45418b673d10f60e9334ebcfa493f125d26e02.tar.gz
docs: use proper quotes
Diffstat (limited to 'gtk/gtkaccellabel.c')
-rw-r--r--gtk/gtkaccellabel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkaccellabel.c b/gtk/gtkaccellabel.c
index 1b4cb77c87..71a53a2638 100644
--- a/gtk/gtkaccellabel.c
+++ b/gtk/gtkaccellabel.c
@@ -42,7 +42,7 @@
* @See_also: #GtkAccelGroup
*
* The #GtkAccelLabel widget is a subclass of #GtkLabel that also displays an
- * accelerator key on the right of the label text, e.g. 'Ctl+S'.
+ * accelerator key on the right of the label text, e.g. “Ctl+S”.
* It is commonly used in menus to show the keyboard short-cuts for commands.
*
* The accelerator key to display is not set explicitly.
@@ -51,10 +51,10 @@
* gtk_accel_label_set_accel_widget().
*
* For example, a #GtkMenuItem widget may have an accelerator added to emit the
- * "activate" signal when the 'Ctl+S' key combination is pressed.
+ * “activate” signal when the “Ctl+S” key combination is pressed.
* A #GtkAccelLabel is created and added to the #GtkMenuItem, and
* gtk_accel_label_set_accel_widget() is called with the #GtkMenuItem as the
- * second argument. The #GtkAccelLabel will now display 'Ctl+S' after its label.
+ * second argument. The #GtkAccelLabel will now display “Ctl+S” after its label.
*
* Note that creating a #GtkMenuItem with gtk_menu_item_new_with_label() (or
* one of the similar functions for #GtkCheckMenuItem and #GtkRadioMenuItem)
@@ -612,7 +612,7 @@ gtk_accel_label_get_string (GtkAccelLabel *accel_label)
}
/* Underscores in key names are better displayed as spaces
- * E.g., Page_Up should be "Page Up".
+ * E.g., Page_Up should be “Page Up”.
*
* Some keynames also have prefixes that are not suitable
* for display, e.g XF86AudioMute, so strip those out, too.