From 8f568265bf65f4c7bdc19738f91b4e98ed826394 Mon Sep 17 00:00:00 2001 From: rbuj Date: Tue, 5 Mar 2019 19:23:42 +0100 Subject: eel: replace eel_ref_str with GRefString GNOME/nautilus@b4d200f https://developer.gnome.org/glib/stable/glib-Reference-counted-strings.html --- libcaja-private/caja-file-private.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'libcaja-private/caja-file-private.h') diff --git a/libcaja-private/caja-file-private.h b/libcaja-private/caja-file-private.h index f5e77be7..053f62a0 100644 --- a/libcaja-private/caja-file-private.h +++ b/libcaja-private/caja-file-private.h @@ -62,14 +62,14 @@ struct _CajaFilePrivate { CajaDirectory *directory; - eel_ref_str name; + GRefString *name; /* File info: */ GFileType type; - eel_ref_str display_name; + GRefString *display_name; char *display_name_collation_key; - eel_ref_str edit_name; + GRefString *edit_name; goffset size; /* -1 is unknown */ goffset size_on_disk; /* -1 is unknown */ @@ -80,9 +80,9 @@ struct _CajaFilePrivate int uid; /* -1 is none */ int gid; /* -1 is none */ - eel_ref_str owner; - eel_ref_str owner_real; - eel_ref_str group; + GRefString *owner; + GRefString *owner_real; + GRefString *group; time_t atime; /* 0 is unknown */ time_t mtime; /* 0 is unknown */ @@ -90,7 +90,7 @@ struct _CajaFilePrivate char *symlink_name; - eel_ref_str mime_type; + GRefString *mime_type; char *selinux_context; char *description; @@ -121,7 +121,7 @@ struct _CajaFilePrivate /* used during DND, for checking whether source and destination are on * the same file system. */ - eel_ref_str filesystem_id; + GRefString *filesystem_id; char *trash_orig_path; -- cgit v1.2.1