summaryrefslogtreecommitdiff
path: root/gtk/gtkinfobar.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/gtkinfobar.c
parentc3dfb17031842458e86907e8c1d3a1ca4c442a8c (diff)
downloadgtk+-2a45418b673d10f60e9334ebcfa493f125d26e02.tar.gz
docs: use proper quotes
Diffstat (limited to 'gtk/gtkinfobar.c')
-rw-r--r--gtk/gtkinfobar.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkinfobar.c b/gtk/gtkinfobar.c
index 42b01613f2..e48048a1c3 100644
--- a/gtk/gtkinfobar.c
+++ b/gtk/gtkinfobar.c
@@ -102,10 +102,10 @@
*
* The GtkInfoBar implementation of the GtkBuildable interface exposes
* the content area and action area as internal children with the names
- * "content_area" and "action_area".
+ * “content_area” and “action_area”.
*
* GtkInfoBar supports a custom &lt;action-widgets&gt; element, which
- * can contain multiple &lt;action-widget&gt; elements. The "response"
+ * can contain multiple &lt;action-widget&gt; elements. The “response”
* attribute specifies a numeric response, and the content of the element
* is the id of widget (which should be a child of the dialogs @action_area).
*/
@@ -736,7 +736,7 @@ gtk_info_bar_get_content_area (GtkInfoBar *info_bar)
* @response_id: response ID for the button
*
* Adds a button with the given text and sets things up so that
- * clicking the button will emit the "response" signal with the given
+ * clicking the button will emit the “response” signal with the given
* response_id. The button is appended to the end of the info bars's
* action area. The button widget is returned, but usually you don't
* need it.
@@ -859,7 +859,7 @@ gtk_info_bar_new (void)
* some arbitrary text. A response ID can be any positive number,
* or one of the values in the #GtkResponseType enumeration. If the
* user clicks one of these dialog buttons, GtkInfoBar will emit
- * the "response" signal with the corresponding response ID.
+ * the “response” signal with the corresponding response ID.
*
* Returns: a new #GtkInfoBar
*/
@@ -921,7 +921,7 @@ gtk_info_bar_set_response_sensitive (GtkInfoBar *info_bar,
*
* Sets the last widget in the info bar's action area with
* the given response_id as the default widget for the dialog.
- * Pressing "Enter" normally activates the default widget.
+ * Pressing “Enter” normally activates the default widget.
*
* Note that this function currently requires @info_bar to
* be added to a widget hierarchy.