aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/menus/gal-view.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 /widgets/menus/gal-view.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 'widgets/menus/gal-view.h')
-rw-r--r--widgets/menus/gal-view.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/widgets/menus/gal-view.h b/widgets/menus/gal-view.h
index b0ac4f3176..ce73400033 100644
--- a/widgets/menus/gal-view.h
+++ b/widgets/menus/gal-view.h
@@ -50,13 +50,13 @@ typedef struct {
*/
void (*edit) (GalView *view, GtkWindow *parent_window);
void (*load) (GalView *view,
- const char *filename);
+ const gchar *filename);
void (*save) (GalView *view,
- const char *filename);
- const char *(*get_title) (GalView *view);
+ const gchar *filename);
+ const gchar *(*get_title) (GalView *view);
void (*set_title) (GalView *view,
- const char *title);
- const char *(*get_type_code) (GalView *view);
+ const gchar *title);
+ const gchar *(*get_type_code) (GalView *view);
GalView *(*clone) (GalView *view);
/* Signals */
@@ -72,17 +72,17 @@ void gal_view_edit (GalView *view,
/* xml load and save functions */
void gal_view_load (GalView *view,
- const char *filename);
+ const gchar *filename);
void gal_view_save (GalView *view,
- const char *filename);
+ const gchar *filename);
/* Title functions */
-const char *gal_view_get_title (GalView *view);
+const gchar *gal_view_get_title (GalView *view);
void gal_view_set_title (GalView *view,
- const char *title);
+ const gchar *title);
/* View type. */
-const char *gal_view_get_type_code (GalView *view);
+const gchar *gal_view_get_type_code (GalView *view);
/* Cloning the view */
GalView *gal_view_clone (GalView *view);