Change the indention-style

This commit is contained in:
Axel Wagner
2010-08-03 21:20:11 +02:00
parent 49eef0db3f
commit 8595d3bb48
9 changed files with 714 additions and 714 deletions

View File

@ -12,16 +12,16 @@ void parse_workspaces_json();
void free_workspaces();
struct i3_ws {
int num;
char *name;
int name_width;
bool visible;
bool focused;
bool urgent;
rect rect;
struct i3_output *output;
int num;
char *name;
int name_width;
bool visible;
bool focused;
bool urgent;
rect rect;
struct i3_output *output;
TAILQ_ENTRY(i3_ws) tailq;
TAILQ_ENTRY(i3_ws) tailq;
};
#endif