Mercurial > geeqie.yaz
changeset 1277:93df70312ccd
Reorder fields a bit and make flags field unsigned.
author | zas_ |
---|---|
date | Tue, 03 Feb 2009 13:50:10 +0000 |
parents | 4177057ca11b |
children | c5852c543775 |
files | src/typedefs.h |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/typedefs.h Tue Feb 03 08:41:21 2009 +0000 +++ b/src/typedefs.h Tue Feb 03 13:50:10 2009 +0000 @@ -202,15 +202,15 @@ typedef struct _EditorDescription EditorDescription; struct _EditorDescription { - gchar *key; /* desktop file name, not including path, including extension */ - gchar *name; /* localized name presented to user */ - gchar *exec; - gchar *menu_path; + gchar *key; /* desktop file name, not including path, including extension */ + gchar *name; /* Name, localized name presented to user */ + gchar *icon; /* Icon */ + gchar *exec; /* Exec */ + gchar *menu_path; gchar *hotkey; GList *ext_list; - gchar *icon; gchar *file; - gint flags; + guint flags; gboolean hidden; };