* mu-config, mu-query: implement sortfield and ascending/descending

This commit is contained in:
Dirk-Jan C. Binnema
2009-12-11 23:55:35 +02:00
parent 1cff4534b8
commit 9792e3c4e1
4 changed files with 23 additions and 27 deletions

View File

@ -48,12 +48,10 @@ struct _MuConfigOptions {
search results */
const char *fields; /* fields to show in output */
const char *sortfield_str; /* field to sort by (string) */
const char *sortfield; /* field to sort by (string) */
/* FIXME: clean up this mess */
gboolean sortdir_descending ; /* sort descending? */
gboolean sortdir_ascending;
gboolean ascending_flag, descending_flag;
gboolean descending; /* sort descending? */
gboolean ascending;
};
typedef struct _MuConfigOptions MuConfigOptions;