aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-27 23:13:25 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-29 00:13:23 +0800
commitfad4af8a3d4c6f50f7bcceca8d545eb17d6fd056 (patch)
treeae78be371695c3dc18847b87d3f014f985aa3a40 /shell/e-shell.h
parent6f5464f34ceec9e5701e3e3e651a40f9e6b3a072 (diff)
downloadgsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.gz
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.bz2
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.lz
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.xz
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.zst
gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.zip
Prefer GLib basic types over C types.
Diffstat (limited to 'shell/e-shell.h')
-rw-r--r--shell/e-shell.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/e-shell.h b/shell/e-shell.h
index e8451e3b5b..4f26846071 100644
--- a/shell/e-shell.h
+++ b/shell/e-shell.h
@@ -95,7 +95,7 @@ typedef enum _EShellConstructResult EShellConstructResult;
GType e_shell_get_type (void);
EShellConstructResult e_shell_construct (EShell *shell,
- const char *iid,
+ const gchar *iid,
EShellStartupLineMode startup_line_mode);
EShell *e_shell_new (EShellStartupLineMode startup_line_mode,
EShellConstructResult *construct_result_return);
@@ -103,7 +103,7 @@ EShell *e_shell_new (EShellStartupLineMode startup_line_m
gboolean e_shell_attempt_upgrade (EShell *shell);
EShellWindow *e_shell_create_window (EShell *shell,
- const char *component_id,
+ const gchar *component_id,
EShellWindow *template_window);
gboolean e_shell_request_close_window (EShell *shell,
EShellWindow *window);
@@ -129,14 +129,14 @@ void e_shell_set_crash_recovery (EShell *shell,
void e_shell_send_receive (EShell *shell);
void e_shell_show_settings (EShell *shell,
- const char *type,
+ const gchar *type,
EShellWindow *shell_window);
gboolean e_shell_can_quit (EShell *shell);
gboolean e_shell_do_quit (EShell *shell);
gboolean e_shell_quit (EShell *shell);
-const char *e_shell_construct_result_to_string (EShellConstructResult result);
+const gchar *e_shell_construct_result_to_string (EShellConstructResult result);
typedef gboolean (*EMainShellFunc) (EShell *shell, EShellWindow *window, gpointer user_data);
void e_shell_foreach_shell_window (EShell *shell, EMainShellFunc func, gpointer user_data);