aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-07-18 09:26:25 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-07-19 01:28:10 +0800
commita11439aeaf8009d36c3a93bb62fa18efdef8d0e0 (patch)
treeee6103abac7a55e3fcb685dcd7e87286f468d01f /shell
parent61176abc4131f4379e43b4c3031cde89ad88a2a9 (diff)
downloadgsoc2013-evolution-a11439aeaf8009d36c3a93bb62fa18efdef8d0e0.tar
gsoc2013-evolution-a11439aeaf8009d36c3a93bb62fa18efdef8d0e0.tar.gz
gsoc2013-evolution-a11439aeaf8009d36c3a93bb62fa18efdef8d0e0.tar.bz2
gsoc2013-evolution-a11439aeaf8009d36c3a93bb62fa18efdef8d0e0.tar.lz
gsoc2013-evolution-a11439aeaf8009d36c3a93bb62fa18efdef8d0e0.tar.xz
gsoc2013-evolution-a11439aeaf8009d36c3a93bb62fa18efdef8d0e0.tar.zst
gsoc2013-evolution-a11439aeaf8009d36c3a93bb62fa18efdef8d0e0.zip
Update API documentation.
Diffstat (limited to 'shell')
-rw-r--r--shell/e-shell-meego.c8
-rw-r--r--shell/e-shell-utils.h9
2 files changed, 11 insertions, 6 deletions
diff --git a/shell/e-shell-meego.c b/shell/e-shell-meego.c
index 3d48d55882..a9128c1b9b 100644
--- a/shell/e-shell-meego.c
+++ b/shell/e-shell-meego.c
@@ -30,12 +30,16 @@
#endif
#ifdef G_OS_WIN32
-void e_shell_detect_meego (gboolean *is_meego, gboolean *small_screen)
+void
+e_shell_detect_meego (gboolean *is_meego,
+ gboolean *small_screen)
{
*is_meego = *small_screen = FALSE;
}
#else
-void e_shell_detect_meego (gboolean *is_meego, gboolean *small_screen)
+void
+e_shell_detect_meego (gboolean *is_meego,
+ gboolean *small_screen)
{
Window *wm_window_v = NULL;
guchar *moblin_string = NULL;
diff --git a/shell/e-shell-utils.h b/shell/e-shell-utils.h
index 1b7202a5c5..c9237b983d 100644
--- a/shell/e-shell-utils.h
+++ b/shell/e-shell-utils.h
@@ -50,10 +50,11 @@ guint e_shell_utils_import_uris (EShell *shell,
gchar **uris,
gboolean preview);
-void e_shell_hide_widgets_for_express_mode (EShell *shell,
- GtkBuilder *builder,
- const gchar *widget_name,
- ...) G_GNUC_NULL_TERMINATED;
+void e_shell_hide_widgets_for_express_mode
+ (EShell *shell,
+ GtkBuilder *builder,
+ const gchar *widget_name,
+ ...) G_GNUC_NULL_TERMINATED;
G_END_DECLS