diff options
author | Felix Riemann <[email protected]> | 2013-12-17 15:53:10 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-07-23 23:08:53 +0200 |
commit | 5f6f184f514349e682de4a4150a095a219fe89f4 (patch) | |
tree | f025e3a9e818eb4917681e8f185a6adabb896a45 /src/eom-image-private.h | |
parent | a95925a5ef1782be60423a3e0b6108591483740f (diff) | |
download | eom-5f6f184f514349e682de4a4150a095a219fe89f4.tar.bz2 eom-5f6f184f514349e682de4a4150a095a219fe89f4.tar.xz |
EomImage: Slight optimization of private data structure
- Remove/Disable unused members
- Close memory hole on 64-bit
origin commit:
https://gitlab.gnome.org/GNOME/eog/commit/08a8460
Diffstat (limited to 'src/eom-image-private.h')
-rw-r--r-- | src/eom-image-private.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/eom-image-private.h b/src/eom-image-private.h index 0dfce1d..fbe46ae 100644 --- a/src/eom-image-private.h +++ b/src/eom-image-private.h @@ -34,13 +34,12 @@ struct _EomImagePrivate { EomImageStatus status; EomImageStatus prev_status; - gboolean is_monitored; - EomImageMetadataStatus metadata_status; + EomImageMetadataStatus metadata_status; - GdkPixbuf *image; + gboolean is_playing; GdkPixbufAnimation *anim; GdkPixbufAnimationIter *anim_iter; - gboolean is_playing; + GdkPixbuf *image; GdkPixbuf *thumbnail; #ifdef HAVE_RSVG RsvgHandle *svg; @@ -56,9 +55,11 @@ struct _EomImagePrivate { guint exif_chunk_len; guchar *exif_chunk; +#if 0 /* Holds IPTC raw data */ guchar *iptc_chunk; guint iptc_chunk_len; +#endif gboolean modified; gboolean file_is_changed; |