diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-07 13:42:09 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-07 13:42:09 -0500 |
commit | 4dee965116da4b45ec51411ed27928f6fc0845ba (patch) | |
tree | 23e52c2ff1adfb05282cf70a780ee01406b7e6d6 /gtk | |
parent | cb6483d382e1529ba94cf3e597ee3fe116745c8b (diff) | |
download | gtk+-4dee965116da4b45ec51411ed27928f6fc0845ba.tar.gz |
docs: use apostrophe in *'m
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkpapersize.c | 2 | ||||
-rw-r--r-- | gtk/gtkradiobutton.c | 2 | ||||
-rw-r--r-- | gtk/gtktogglebutton.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkpapersize.c b/gtk/gtkpapersize.c index 35905d90d3..aced21cd52 100644 --- a/gtk/gtkpapersize.c +++ b/gtk/gtkpapersize.c @@ -709,7 +709,7 @@ gtk_paper_size_get_default (void) * the imageble area on any printer. * * I’ve taken the actual values used from the OSX page setup dialog. - * I'm not sure exactly where they got these values for, but might + * I’m not sure exactly where they got these values for, but might * correspond to this (from ghostscript docs): * * All DeskJets have 0.5 inches (1.27cm) of unprintable bottom margin, diff --git a/gtk/gtkradiobutton.c b/gtk/gtkradiobutton.c index 0d93796ce9..e4e14cc61c 100644 --- a/gtk/gtkradiobutton.c +++ b/gtk/gtkradiobutton.c @@ -86,7 +86,7 @@ * * /* Create a radio button with a label */ * radio2 = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (radio1), - * "I'm the second radio button."); + * "I’m the second radio button."); * * /* Pack them into a box, then show all the widgets */ * gtk_box_pack_start (GTK_BOX (box), radio1, TRUE, TRUE, 2); diff --git a/gtk/gtktogglebutton.c b/gtk/gtktogglebutton.c index c01c8eaf60..52968658e9 100644 --- a/gtk/gtktogglebutton.c +++ b/gtk/gtktogglebutton.c @@ -65,7 +65,7 @@ * GtkWidget *dialog, *toggle1, *toggle2; * * dialog = gtk_dialog_new (<!-- -->); - * toggle1 = gtk_toggle_button_new_with_label ("Hi, i'm a toggle button."); + * toggle1 = gtk_toggle_button_new_with_label ("Hi, i’m a toggle button."); * * // Makes this toggle button invisible * gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (toggle1), TRUE); @@ -75,7 +75,7 @@ * gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->action_area), * toggle1, FALSE, FALSE, 2); * - * toggle2 = gtk_toggle_button_new_with_label ("Hi, i'm another toggle button."); + * toggle2 = gtk_toggle_button_new_with_label ("Hi, i’m another toggle button."); * gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (toggle2), FALSE); * g_signal_connect (toggle2, "toggled", * G_CALLBACK (output_state), NULL); |