whitespace formatting cleanup

This commit is contained in:
Carsten Haitzler 2020-11-29 13:30:24 +00:00
parent 22b4f766b5
commit d9cffad0f8
1 changed files with 11 additions and 17 deletions

View File

@ -23,32 +23,26 @@ typedef struct _Setting Setting;
struct _Settings_Manager struct _Settings_Manager
{ {
Ecore_X_Window selection; Ecore_X_Window selection;
Ecore_Timer *timer_retry; Ecore_Timer *timer_retry;
unsigned long serial; unsigned long serial;
Ecore_X_Atom _atom_xsettings_screen; Ecore_X_Atom _atom_xsettings_screen;
Eina_Bool enabled E_BITFIELD; Eina_Bool enabled E_BITFIELD;
}; };
struct _Setting struct _Setting
{ {
unsigned short type; unsigned short type;
const char *name; const char *name;
struct {
struct
{
const char *value; const char *value;
} s; } s;
struct struct {
{
int value; int value;
} i; } i;
struct struct {
{
unsigned short red, green, blue, alpha; unsigned short red, green, blue, alpha;
} c; } c;
unsigned long length; unsigned long length;
unsigned long last_change; unsigned long last_change;
}; };