diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-05 14:50:22 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-05 15:08:42 -0500 |
commit | 47469eb2966a7695f64fce1dbb8441f4b3ac6ecb (patch) | |
tree | dcb3ac50eb13b95facd5612dc7f7d24982f6e0e1 /gdk/gdkkeys.c | |
parent | 2a45418b673d10f60e9334ebcfa493f125d26e02 (diff) | |
download | gtk+-47469eb2966a7695f64fce1dbb8441f4b3ac6ecb.tar.gz |
Use proper quotes in gdk
Diffstat (limited to 'gdk/gdkkeys.c')
-rw-r--r-- | gdk/gdkkeys.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdk/gdkkeys.c b/gdk/gdkkeys.c index d7c1303c4c..5ead167161 100644 --- a/gdk/gdkkeys.c +++ b/gdk/gdkkeys.c @@ -68,8 +68,8 @@ * this is an identifying number for a physical key. Second, it contains the * “level” of the key. The level indicates which symbol on the * key will be used, in a vertical direction. So on a standard US keyboard, the key - * with the number "1" on it also has the exclamation point ("!") character on - * it. The level indicates whether to use the "1" or the "!" symbol. The letter + * with the number “1“ on it also has the exclamation point (”!”) character on + * it. The level indicates whether to use the “1” or the “!” symbol. The letter * keys are considered to have a lowercase letter at level 0, and an uppercase * letter at level 1, though only the uppercase letter is printed. Third, the * #GdkKeymapKey contains a group; groups are not used on standard US keyboards, @@ -87,7 +87,7 @@ * keyboard state -- consisting of hardware keycode pressed, active modifiers, and * active group -- applies the appropriate rules, and returns the group/level to be * used to index the keymap, along with the modifiers which did not affect the - * group and level. i.e. it returns "unconsumed modifiers." The keyboard group may + * group and level. i.e. it returns “unconsumed modifiers.” The keyboard group may * differ from the effective group used for keymap lookups because some keys don't * have multiple groups - e.g. the Enter key is always in group 0 regardless of * keyboard state. @@ -682,7 +682,7 @@ gdk_keymap_get_modifier_mask (GdkKeymap *keymap, * * The names are the same as those in the * `gdk/gdkkeysyms.h` header file - * but without the leading "GDK_KEY_". + * but without the leading “GDK_KEY_”. * * Return value: (transfer none): a string containing the name of the key, * or %NULL if @keyval is not a valid key. The string should not be @@ -702,7 +702,7 @@ gdk_keyval_name (guint keyval) * * The names are the same as those in the * `gdk/gdkkeysyms.h` header file - * but without the leading "GDK_KEY_". + * but without the leading “GDK_KEY_”. * * Returns: the corresponding key value, or %GDK_KEY_VoidSymbol * if the key name is not a valid key |