Reorder fields a bit and make flags field unsigned.
authorLaurent Monin <geeqie@norz.org>
Tue, 3 Feb 2009 13:50:10 +0000 (13:50 +0000)
committerLaurent Monin <geeqie@norz.org>
Tue, 3 Feb 2009 13:50:10 +0000 (13:50 +0000)
src/typedefs.h

index 16548db..e74431c 100644 (file)
@@ -202,15 +202,15 @@ typedef struct _ExifData ExifData;
 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;
 };