aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLi Yuan <liyuan@src.gnome.org>2006-05-15 18:27:23 +0800
committerLi Yuan <liyuan@src.gnome.org>2006-05-15 18:27:23 +0800
commit5ddb0f8e08d7b905e441467217734c7514f9b272 (patch)
tree38ab086551d4ae121d1e3a56b67794658a6abb0b
parentfe716726ac285b908e5e4b83c6361306e9e218c2 (diff)
downloadgsoc2013-evolution-5ddb0f8e08d7b905e441467217734c7514f9b272.tar
gsoc2013-evolution-5ddb0f8e08d7b905e441467217734c7514f9b272.tar.gz
gsoc2013-evolution-5ddb0f8e08d7b905e441467217734c7514f9b272.tar.bz2
gsoc2013-evolution-5ddb0f8e08d7b905e441467217734c7514f9b272.tar.lz
gsoc2013-evolution-5ddb0f8e08d7b905e441467217734c7514f9b272.tar.xz
gsoc2013-evolution-5ddb0f8e08d7b905e441467217734c7514f9b272.tar.zst
gsoc2013-evolution-5ddb0f8e08d7b905e441467217734c7514f9b272.zip
Change the variable name from is_actived to is_active
svn path=/trunk/; revision=31987
-rw-r--r--shell/e-sidebar.c6
1 files changed, 3 insertions, 3 deletions
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);
}