diff options
author | Li Yuan <liyuan@src.gnome.org> | 2006-05-15 18:27:23 +0800 |
---|---|---|
committer | Li Yuan <liyuan@src.gnome.org> | 2006-05-15 18:27:23 +0800 |
commit | 5ddb0f8e08d7b905e441467217734c7514f9b272 (patch) | |
tree | 38ab086551d4ae121d1e3a56b67794658a6abb0b /shell | |
parent | fe716726ac285b908e5e4b83c6361306e9e218c2 (diff) | |
download | gsoc2013-evolution-5ddb0f8e08d7b905e441467217734c7514f9b272.tar.gz gsoc2013-evolution-5ddb0f8e08d7b905e441467217734c7514f9b272.tar.zst gsoc2013-evolution-5ddb0f8e08d7b905e441467217734c7514f9b272.zip |
Change the variable name from is_actived to is_active
svn path=/trunk/; revision=31987
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-sidebar.c | 6 |
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); } |