diff options
Diffstat (limited to 'src/items.h')
| -rw-r--r-- | src/items.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/items.h b/src/items.h index 46b4c38..8c14dda 100644 --- a/src/items.h +++ b/src/items.h @@ -76,8 +76,8 @@ typedef struct { gchar *path; gchar *title; gchar *title_description; - gchar *thumbnail; - gchar *preview; + gchar *thumbnail; /* FIXME: port to flexible image sizes */ + gchar *preview; /* FIXME: port to flexible image sizes */ gboolean force_nofullsize; gboolean force_fullsize; gboolean hidden; @@ -113,7 +113,8 @@ typedef enum { /* * GET_ITEM_TARGET_FILENAME: get target item filename */ -#define GET_ITEM_TARGET_FILENAME(i) g_path_get_basename ((i->path == NULL && i->preview) ? i->preview : i->path); +/* FIXME: port to flexible image sizes */ +#define GET_ITEM_TARGET_FILENAME(i) g_path_get_basename ((i->path == NULL && i->preview) ? i->preview : i->path) /* * parse_album_xml: XML parser for gallery index.xml files |
