summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-07 13:35:54 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-07 13:35:54 -0500
commit285d216d3e100496e4c732c2e15741c4bb50ddbc (patch)
treeae2f0786886356905a32ddf6828f3463ff4bd1b7 /gtk
parente34bd4137d4fba33b2cbea927fdcc829b1983aaa (diff)
downloadgtk+-285d216d3e100496e4c732c2e15741c4bb50ddbc.tar.gz
docs: use apostrophe in *'ll
Diffstat (limited to 'gtk')
-rw-r--r--gtk/deprecated/gtkiconfactory.c2
-rw-r--r--gtk/gtkaccelmap.c2
-rw-r--r--gtk/gtkdrawingarea.c2
-rw-r--r--gtk/gtkentry.c2
-rw-r--r--gtk/gtkfilesystem.c2
-rw-r--r--gtk/gtkicontheme.c2
-rw-r--r--gtk/gtklabel.c2
-rw-r--r--gtk/gtkplacessidebar.c2
-rw-r--r--gtk/gtkscale.c2
-rw-r--r--gtk/gtkselectionprivate.h2
-rw-r--r--gtk/gtktestutils.c6
-rw-r--r--gtk/gtktextbuffer.c2
-rw-r--r--gtk/gtkwindow.c2
13 files changed, 15 insertions, 15 deletions
diff --git a/gtk/deprecated/gtkiconfactory.c b/gtk/deprecated/gtkiconfactory.c
index 9ab1b64aa5..b369004d8d 100644
--- a/gtk/deprecated/gtkiconfactory.c
+++ b/gtk/deprecated/gtkiconfactory.c
@@ -1879,7 +1879,7 @@ gtk_icon_set_get_sizes (GtkIconSet *icon_set,
*
* If you want to use a different base pixbuf for different icon
* variants, you create multiple icon sources, mark which variants
- * they'll be used to create, and add them to the icon set with
+ * they’ll be used to create, and add them to the icon set with
* gtk_icon_set_add_source().
*
* By default, the icon source has all parameters wildcarded. That is,
diff --git a/gtk/gtkaccelmap.c b/gtk/gtkaccelmap.c
index aca7705cb9..046d3a506f 100644
--- a/gtk/gtkaccelmap.c
+++ b/gtk/gtkaccelmap.c
@@ -45,7 +45,7 @@
* Accelerator maps are used to define runtime configurable accelerators.
* Functions for manipulating them are are usually used by higher level
* convenience mechanisms like #GtkUIManager and are thus considered
- * “low-level”. You'll want to use them if you're manually creating menus that
+ * “low-level”. You’ll want to use them if you're manually creating menus that
* should have user-configurable accelerators.
*
* An accelerator is uniquely defined by:
diff --git a/gtk/gtkdrawingarea.c b/gtk/gtkdrawingarea.c
index f2775ea803..c72193bd32 100644
--- a/gtk/gtkdrawingarea.c
+++ b/gtk/gtkdrawingarea.c
@@ -97,7 +97,7 @@
* You can also force an expose event by adding to the “damage region”
* of the drawing area’s window; gtk_widget_queue_draw_area() and
* gdk_window_invalidate_rect() are equally good ways to do this.
- * You'll then get a draw signal for the invalid region.
+ * You’ll then get a draw signal for the invalid region.
*
* The available routines for drawing are documented on the
* [GDK Drawing Primitives][gdk3-Cairo-Interaction] page
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
index 4fbfb0d8bb..6c364a611e 100644
--- a/gtk/gtkentry.c
+++ b/gtk/gtkentry.c
@@ -8107,7 +8107,7 @@ gtk_entry_text_index_to_layout_index (GtkEntry *entry,
* is clicked.
*
* Note that as the user scrolls around in the entry the offsets will
- * change; you'll need to connect to the “notify::scroll-offset”
+ * change; you’ll need to connect to the “notify::scroll-offset”
* signal to track this. Remember when using the #PangoLayout
* functions you need to convert to and from pixels using
* PANGO_PIXELS() or #PANGO_SCALE.
diff --git a/gtk/gtkfilesystem.c b/gtk/gtkfilesystem.c
index f6b4e025dd..6508ee8195 100644
--- a/gtk/gtkfilesystem.c
+++ b/gtk/gtkfilesystem.c
@@ -41,7 +41,7 @@
/* The pointers we return for a GtkFileSystemVolume are opaque tokens; they are
* really pointers to GDrive, GVolume or GMount objects. We need an extra
- * token for the fake “File System” volume. So, we'll return a pointer to
+ * token for the fake “File System” volume. So, we’ll return a pointer to
* this particular string.
*/
static const gchar *root_volume_token = N_("File System");
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c
index 84a4bb2db7..05a1ef09d8 100644
--- a/gtk/gtkicontheme.c
+++ b/gtk/gtkicontheme.c
@@ -435,7 +435,7 @@ G_DEFINE_TYPE_WITH_PRIVATE (GtkIconTheme, gtk_icon_theme, G_TYPE_OBJECT)
*
* Creates a new icon theme object. Icon theme objects are used
* to lookup up an icon by name in a particular icon theme.
- * Usually, you'll want to use gtk_icon_theme_get_default()
+ * Usually, you’ll want to use gtk_icon_theme_get_default()
* or gtk_icon_theme_get_for_screen() rather than creating
* a new icon theme object for scratch.
*
diff --git a/gtk/gtklabel.c b/gtk/gtklabel.c
index 48bcac9eee..44196083a4 100644
--- a/gtk/gtklabel.c
+++ b/gtk/gtklabel.c
@@ -149,7 +149,7 @@
* The markup passed to gtk_label_set_markup() must be valid; for example,
* literal &lt;, &gt; and &amp; characters must be escaped as \&lt;,
* \gt;, and \&amp;. If you pass text obtained from the user, file,
- * or a network to gtk_label_set_markup(), you'll want to escape it with
+ * or a network to gtk_label_set_markup(), you’ll want to escape it with
* g_markup_escape_text() or g_markup_printf_escaped().
*
* Markup strings are just a convenient way to set the #PangoAttrList on
diff --git a/gtk/gtkplacessidebar.c b/gtk/gtkplacessidebar.c
index 97034ec4e4..19af1df342 100644
--- a/gtk/gtkplacessidebar.c
+++ b/gtk/gtkplacessidebar.c
@@ -103,7 +103,7 @@
/* These are used when a destination-side DND operation is taking place.
* Normally, when a file is being hovered directly over a bookmark,
- * we'll be in DROP_STATE_NORMAL.
+ * we’ll be in DROP_STATE_NORMAL.
*
* But when a file is being hovered between bookmarks, this means the user
* may want to create a new bookmark for that file between those bookmarks.
diff --git a/gtk/gtkscale.c b/gtk/gtkscale.c
index 7f6a4ab8b9..44ecabb7f9 100644
--- a/gtk/gtkscale.c
+++ b/gtk/gtkscale.c
@@ -50,7 +50,7 @@
* @Title: GtkScale
*
* A GtkScale is a slider control used to select a numeric value.
- * To use it, you'll probably want to investigate the methods on
+ * To use it, you’ll probably want to investigate the methods on
* its base class, #GtkRange, in addition to the methods for GtkScale itself.
* To set the value of a scale, you would normally use gtk_range_set_value().
* To detect changes to the value, you would normally use the
diff --git a/gtk/gtkselectionprivate.h b/gtk/gtkselectionprivate.h
index 8d557e8270..e3a4aa55b1 100644
--- a/gtk/gtkselectionprivate.h
+++ b/gtk/gtkselectionprivate.h
@@ -23,7 +23,7 @@
* ignored. This structure has object semantics - no fields should be
* modified directly, they should not be created directly, and
* pointers to them should not be stored beyond the duration of a
- * callback. (If the last is changed, we'll need to add reference
+ * callback. (If the last is changed, we’ll need to add reference
* counting.) The time field gives the timestamp at which the data was
* sent.
*/
diff --git a/gtk/gtktestutils.c b/gtk/gtktestutils.c
index e07a14d896..05bd21dc1b 100644
--- a/gtk/gtktestutils.c
+++ b/gtk/gtktestutils.c
@@ -52,7 +52,7 @@
* This function is used to initialize a GTK+ test program.
*
* It will in turn call g_test_init() and gtk_init() to properly
- * initialize the testing framework and graphical toolkit. It'll
+ * initialize the testing framework and graphical toolkit. It’ll
* also set the program’s locale to “C” and prevent loading of rc
* files and Gtk+ modules. This is done to make tets program
* environments as deterministic as possible.
@@ -444,7 +444,7 @@ gtk_test_find_widget (GtkWidget *widget,
* @percentage: value between 0 and 100.
*
* This function will adjust the slider position of all GtkRange
- * based widgets, such as scrollbars or scales, it'll also adjust
+ * based widgets, such as scrollbars or scales, it’ll also adjust
* spin buttons. The adjustment value of these widgets is set to
* a value between the lower and upper limits, according to the
* @percentage argument.
@@ -562,7 +562,7 @@ gtk_test_text_get (GtkWidget *widget)
* name-value pairs, terminated by %NULL
*
* This function wraps g_object_new() for widget types.
- * It'll automatically show all created non window widgets, also
+ * It’ll automatically show all created non window widgets, also
* g_object_ref_sink() them (to keep them alive across a running test)
* and set them up for destruction during the next test teardown phase.
*
diff --git a/gtk/gtktextbuffer.c b/gtk/gtktextbuffer.c
index 41142107e4..9845429331 100644
--- a/gtk/gtktextbuffer.c
+++ b/gtk/gtktextbuffer.c
@@ -3772,7 +3772,7 @@ remove_all_selection_clipboards (GtkTextBuffer *buffer)
* pasted text will be inserted at the cursor position, or the buffer selection
* will be replaced if the selection is non-empty.
*
- * Note: pasting is asynchronous, that is, we'll ask for the paste data and
+ * Note: pasting is asynchronous, that is, we’ll ask for the paste data and
* return, and at some point later after the main loop runs, the paste data will
* be inserted.
**/
diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c
index 17d22c6317..50ca49bf3c 100644
--- a/gtk/gtkwindow.c
+++ b/gtk/gtkwindow.c
@@ -7498,7 +7498,7 @@ gtk_window_get_resize_grip_area (GtkWindow *window,
}
/* the accel_key and accel_mods fields of the key have to be setup
- * upon calling this function. it'll then return whether that key
+ * upon calling this function. it’ll then return whether that key
* is at all used as accelerator, and if so will OR in the
* accel_flags member of the key.
*/