diff options
-rw-r--r-- | doc/reference/shell/eshell-sections.txt | 7 | ||||
-rw-r--r-- | doc/reference/shell/tmpl/e-shell.sgml | 18 | ||||
-rw-r--r-- | shell/e-shell.c | 12 |
3 files changed, 27 insertions, 10 deletions
diff --git a/doc/reference/shell/eshell-sections.txt b/doc/reference/shell/eshell-sections.txt index 9b77e535e7..908777cf4b 100644 --- a/doc/reference/shell/eshell-sections.txt +++ b/doc/reference/shell/eshell-sections.txt @@ -2,7 +2,6 @@ <FILE>e-shell</FILE> <TITLE>EShell</TITLE> EShell -EShellLineStatus e_shell_get_default e_shell_list_modules e_shell_get_canonical_name @@ -13,10 +12,10 @@ e_shell_create_window e_shell_get_focused_window e_shell_handle_uri e_shell_send_receive +e_shell_get_network_available +e_shell_set_network_available e_shell_get_online_mode e_shell_set_online_mode -e_shell_get_line_status -e_shell_set_line_status e_shell_get_preferences_window e_shell_event e_shell_is_busy @@ -35,7 +34,7 @@ EShellClass e_shell_get_type <SUBSECTION Private> EShellPrivate -e_shell_migrate_error_quirk +e_shell_migrate_error_quark </SECTION> <SECTION> diff --git a/doc/reference/shell/tmpl/e-shell.sgml b/doc/reference/shell/tmpl/e-shell.sgml index 290ac7fcb8..350141a0e5 100644 --- a/doc/reference/shell/tmpl/e-shell.sgml +++ b/doc/reference/shell/tmpl/e-shell.sgml @@ -188,6 +188,24 @@ EShell @parent: +<!-- ##### FUNCTION e_shell_get_network_available ##### --> +<para> + +</para> + +@shell: +@Returns: + + +<!-- ##### FUNCTION e_shell_set_network_available ##### --> +<para> + +</para> + +@shell: +@network_available: + + <!-- ##### FUNCTION e_shell_get_online_mode ##### --> <para> diff --git a/shell/e-shell.c b/shell/e-shell.c index 95303b8b39..38cc875a17 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -549,7 +549,7 @@ shell_class_init (EShellClass *class) G_TYPE_POINTER); /** - * EShell:handle-uri + * EShell::handle-uri * @shell: the #EShell which emitted the signal * @uri: the URI to be handled * @@ -570,7 +570,7 @@ shell_class_init (EShellClass *class) G_TYPE_STRING); /** - * EShell:prepare-for-offline + * EShell::prepare-for-offline * @shell: the #EShell which emitted the signal * @activity: the #EActivity for offline preparations * @@ -595,7 +595,7 @@ shell_class_init (EShellClass *class) E_TYPE_ACTIVITY); /** - * EShell:prepare-for-online + * EShell::prepare-for-online * @shell: the #EShell which emitted the signal * @activity: the #EActivity for offline preparations * @@ -620,7 +620,7 @@ shell_class_init (EShellClass *class) E_TYPE_ACTIVITY); /** - * EShell:send-receive + * EShell::send-receive * @shell: the #EShell which emitted the signal * @parent: a parent #GtkWindow * @@ -637,7 +637,7 @@ shell_class_init (EShellClass *class) GTK_TYPE_WINDOW); /** - * EShell:window-created + * EShell::window-created * @shell: the #EShell which emitted the signal * @shell_window: the newly created #EShellWindow * @@ -653,7 +653,7 @@ shell_class_init (EShellClass *class) E_TYPE_SHELL_WINDOW); /** - * EShell:window-destroyed + * EShell::window-destroyed * @shell: the #EShell which emitted the signal * @last_window: whether that was the last #EShellWindow * |