# HG changeset patch # User zas_ # Date 1233669010 0 # Node ID 93df70312ccd247d60153945381663a0d8307b08 # Parent 4177057ca11bf0e17494ecc6c2759d30e1e5dd9d Reorder fields a bit and make flags field unsigned. diff -r 4177057ca11b -r 93df70312ccd src/typedefs.h --- 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; };