aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.c
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@gnome.org>2010-03-02 20:33:13 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-03-14 09:49:50 +0800
commit78224aff3858d9824ad51d72100cbcf3c504158f (patch)
treedf0fd9e724e30c405390b193104ddc764c469289 /shell/e-shell.c
parent5069df6878424605df09517e3b097c0bb47be746 (diff)
downloadgsoc2013-evolution-78224aff3858d9824ad51d72100cbcf3c504158f.tar
gsoc2013-evolution-78224aff3858d9824ad51d72100cbcf3c504158f.tar.gz
gsoc2013-evolution-78224aff3858d9824ad51d72100cbcf3c504158f.tar.bz2
gsoc2013-evolution-78224aff3858d9824ad51d72100cbcf3c504158f.tar.lz
gsoc2013-evolution-78224aff3858d9824ad51d72100cbcf3c504158f.tar.xz
gsoc2013-evolution-78224aff3858d9824ad51d72100cbcf3c504158f.tar.zst
gsoc2013-evolution-78224aff3858d9824ad51d72100cbcf3c504158f.zip
Fix a typo
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r--shell/e-shell.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c
index 3fc23477d8..1df973aea0 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -1661,21 +1661,18 @@ e_shell_set_online (EShell *shell,
}
/**
- * e_shell_get_online:
+ * e_shell_get_express_mode:
* @shell: an #EShell
*
- * Returns %TRUE if Evolution is online, %FALSE if Evolution is offline.
- * Evolution may be offline because the user elected to work offline, or
- * because the network has become unavailable.
+ * Returns %TRUE if Evolution is in express mode, %FALSE if Evolution not.
*
- * Returns: %TRUE if Evolution is online
**/
gboolean
e_shell_get_express_mode (EShell *shell)
{
g_return_val_if_fail (E_IS_SHELL (shell), FALSE);
- return shell->priv->online;
+ return shell->priv->express;
}
/**