aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-component-view.c
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-component-view.c
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-component-view.c')
-rw-r--r--shell/e-component-view.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/e-component-view.c b/shell/e-component-view.c
index b87078e974..8e75b5b4a8 100644
--- a/shell/e-component-view.c
+++ b/shell/e-component-view.c
@@ -93,7 +93,7 @@ e_component_view_init (EComponentView *shell)
{
}
-EComponentView *e_component_view_new(GNOME_Evolution_ShellView parent, const char *id, struct _GtkWidget *side, struct _GtkWidget *view, struct _GtkWidget *statusbar)
+EComponentView *e_component_view_new(GNOME_Evolution_ShellView parent, const gchar *id, struct _GtkWidget *side, struct _GtkWidget *view, struct _GtkWidget *statusbar)
{
EComponentView *new = g_object_new (e_component_view_get_type (), NULL);
CORBA_Environment ev = { NULL };
@@ -110,7 +110,7 @@ EComponentView *e_component_view_new(GNOME_Evolution_ShellView parent, const cha
return new;
}
-EComponentView *e_component_view_new_controls(GNOME_Evolution_ShellView parent, const char *id, BonoboControl *side, BonoboControl *view, BonoboControl *statusbar)
+EComponentView *e_component_view_new_controls(GNOME_Evolution_ShellView parent, const gchar *id, BonoboControl *side, BonoboControl *view, BonoboControl *statusbar)
{
EComponentView *new = g_object_new (e_component_view_get_type (), NULL);
CORBA_Environment ev = { NULL };
@@ -128,7 +128,7 @@ EComponentView *e_component_view_new_controls(GNOME_Evolution_ShellView parent,
}
void
-e_component_view_set_title(EComponentView *ecv, const char *title)
+e_component_view_set_title(EComponentView *ecv, const gchar *title)
{
CORBA_Environment ev = { NULL };
@@ -138,7 +138,7 @@ e_component_view_set_title(EComponentView *ecv, const char *title)
}
void
-e_component_view_set_button_icon (EComponentView *ecv, const char *iconName)
+e_component_view_set_button_icon (EComponentView *ecv, const gchar *iconName)
{
CORBA_Environment ev = { NULL };