[wmfs.h confg.c] Remove useless enum

This commit is contained in:
Martin Duquesnoy 2008-09-29 01:55:57 +02:00
parent f501c6762f
commit 53d8d15ffe
2 changed files with 1 additions and 2 deletions

View File

@ -126,7 +126,7 @@ layout_name_to_struct(Layout lt[], char *name)
for(i = 0; i < MAXLAYOUT; ++i)
if(lt[i].func == name_to_func(name, layout_list))
return lt[i];
return lt[Tile];
return lt[0];
}
void

1
wmfs.h
View File

@ -185,7 +185,6 @@ typedef struct
enum { CurNormal, CurResize, CurMove, CurLast };
enum { WMState, WMProtocols, WMName, WMDelete, WMLast };
enum { NetSupported, NetWMName, NetLast };
enum { Tile = 0, Max = 1, Free = 2};
/* Functions Prototypes */