diff src/typedefs.h @ 1277:93df70312ccd

Reorder fields a bit and make flags field unsigned.
author zas_
date Tue, 03 Feb 2009 13:50:10 +0000
parents e0e12512cde2
children 6248faa9e829
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;
 };