From 5ddb0f8e08d7b905e441467217734c7514f9b272 Mon Sep 17 00:00:00 2001 From: Li Yuan Date: Mon, 15 May 2006 10:27:23 +0000 Subject: Change the variable name from is_actived to is_active svn path=/trunk/; revision=31987 --- shell/e-sidebar.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'shell/e-sidebar.c') diff --git a/shell/e-sidebar.c b/shell/e-sidebar.c index 6c3499c98f..32c25d748e 100644 --- a/shell/e-sidebar.c +++ b/shell/e-sidebar.c @@ -136,7 +136,7 @@ button_toggled_callback (GtkToggleButton *toggle_button, ESidebar *sidebar) { int id = 0; - gboolean is_actived = FALSE; + gboolean is_active = FALSE; GSList *p; if (sidebar->priv->in_toggle) @@ -145,7 +145,7 @@ button_toggled_callback (GtkToggleButton *toggle_button, sidebar->priv->in_toggle = TRUE; if (gtk_toggle_button_get_active (toggle_button)) - is_actived = TRUE; + is_active = TRUE; for (p = sidebar->priv->buttons; p != NULL; p = p->next) { Button *button = p->data; @@ -160,7 +160,7 @@ button_toggled_callback (GtkToggleButton *toggle_button, sidebar->priv->in_toggle = FALSE; - if (is_actived) + if (is_active) g_signal_emit (sidebar, signals[BUTTON_SELECTED], 0, id); } -- cgit v1.2.3