summaryrefslogtreecommitdiff
path: root/gtk/gtkactiongroup.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-01-24 17:42:58 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-01-24 17:42:58 +0000
commita57035d9d10b26335fcaaec12185188cbcfa5db5 (patch)
tree999295b1717434eef7c81187bb6b388f4676448c /gtk/gtkactiongroup.c
parenta8d792306c68d28291e708c52bb0b22befd49695 (diff)
downloadgtk+-a57035d9d10b26335fcaaec12185188cbcfa5db5.tar.gz
Replace "effect" by "affect" where appropriate. (#165108, Dan Winship)
2005-01-24 Matthias Clasen <mclasen@redhat.com> * docs/tutorial/gtk-tut.sgml: * docs/tutorial/gtk_tut.sgml: * docs/reference/gtk/tmpl/gtkliststore.sgml: * gtk/gtkactiongroup.c: * gtk/gtksizegroup.c: * gtk/gtksizegroup.h: * gtk/gtktogglebutton.c: Replace "effect" by "affect" where appropriate. (#165108, Dan Winship)
Diffstat (limited to 'gtk/gtkactiongroup.c')
-rw-r--r--gtk/gtkactiongroup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkactiongroup.c b/gtk/gtkactiongroup.c
index 510f9c5c87..30758498a6 100644
--- a/gtk/gtkactiongroup.c
+++ b/gtk/gtkactiongroup.c
@@ -419,7 +419,7 @@ gtk_action_group_get_sensitive (GtkActionGroup *action_group)
static void
cb_set_action_sensitivity (const gchar *name, GtkAction *action)
{
- /* Minor optimization, the action_groups state only effects actions that are
+ /* Minor optimization, the action_groups state only affects actions that are
* themselves sensitive */
if (gtk_action_get_sensitive (action))
g_object_notify (G_OBJECT (action), "sensitive");
@@ -471,7 +471,7 @@ gtk_action_group_get_visible (GtkActionGroup *action_group)
static void
cb_set_action_visiblity (const gchar *name, GtkAction *action)
{
- /* Minor optimization, the action_groups state only effects actions that are
+ /* Minor optimization, the action_groups state only affects actions that are
* themselves sensitive */
if (gtk_action_get_visible (action))
g_object_notify (G_OBJECT (action), "visible");