tray: tidy code

This includes some refactoring and fixing a small memory leak.
This commit is contained in:
Ian Fan 2020-03-04 14:34:32 +00:00 committed by Simon Ser
parent 3b894c387d
commit 68f53cd509
4 changed files with 17 additions and 28 deletions

View file

@ -3,16 +3,16 @@
#include "list.h"
enum subdir_type {
THRESHOLD,
SCALABLE,
FIXED
};
struct icon_theme_subdir {
char *name;
int size;
enum subdir_type type;
enum {
THRESHOLD,
SCALABLE,
FIXED
} type;
int max_size;
int min_size;
int threshold;
@ -39,6 +39,5 @@ void finish_themes(list_t *themes, list_t *basedirs);
*/
char *find_icon(list_t *themes, list_t *basedirs, char *name, int size,
char *theme, int *min_size, int *max_size);
char *find_icon_in_dir(char *name, char *dir, int *min_size, int *max_size);
#endif