aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/menus/gal-view-instance.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-instance.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-instance.h')
-rw-r--r--widgets/menus/gal-view-instance.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/widgets/menus/gal-view-instance.h b/widgets/menus/gal-view-instance.h
index 787bc09713..a7ce2778c9 100644
--- a/widgets/menus/gal-view-instance.h
+++ b/widgets/menus/gal-view-instance.h
@@ -41,13 +41,13 @@ typedef struct {
GalViewCollection *collection;
- char *instance_id;
- char *current_view_filename;
- char *custom_filename;
+ gchar *instance_id;
+ gchar *current_view_filename;
+ gchar *custom_filename;
- char *current_title;
- char *current_type;
- char *current_id;
+ gchar *current_title;
+ gchar *current_type;
+ gchar *current_id;
GalView *current_view;
@@ -55,7 +55,7 @@ typedef struct {
guint collection_changed_id;
guint loaded : 1;
- char *default_view;
+ gchar *default_view;
} GalViewInstance;
typedef struct {
@@ -76,15 +76,15 @@ GType gal_view_instance_get_type (void);
/*collection should be loaded when you call this.
instance_id: Which instance of this type of object is this (for most of evo, this is the folder id.) */
GalViewInstance *gal_view_instance_new (GalViewCollection *collection,
- const char *instance_id);
+ const gchar *instance_id);
GalViewInstance *gal_view_instance_construct (GalViewInstance *instance,
GalViewCollection *collection,
- const char *instance_id);
+ const gchar *instance_id);
/* Manipulate the current view. */
-char *gal_view_instance_get_current_view_id (GalViewInstance *instance);
+gchar *gal_view_instance_get_current_view_id (GalViewInstance *instance);
void gal_view_instance_set_current_view_id (GalViewInstance *instance,
- const char *view_id);
+ const gchar *view_id);
GalView *gal_view_instance_get_current_view (GalViewInstance *instance);
/* Sets the current view to the given custom view. */
@@ -103,9 +103,9 @@ void gal_view_instance_save_as (GalViewInstance *inst
void gal_view_instance_load (GalViewInstance *instance);
/* These only mean anything before gal_view_instance_load is called the first time. */
-const char *gal_view_instance_get_default_view (GalViewInstance *instance);
+const gchar *gal_view_instance_get_default_view (GalViewInstance *instance);
void gal_view_instance_set_default_view (GalViewInstance *instance,
- const char *id);
+ const gchar *id);
EPopupMenu *gal_view_instance_get_popup_menu (GalViewInstance *instance);
void gal_view_instance_free_popup_menu (GalViewInstance *instance,