[ALL] Fix typo
This commit is contained in:
parent
cee28e19c7
commit
8fd87e5892
6
layout.c
6
layout.c
@ -37,8 +37,6 @@ freelayout(void)
|
|||||||
{
|
{
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
tags[seltag].layout.func = freelayout;
|
|
||||||
|
|
||||||
for(c = clients; c; c = c->next)
|
for(c = clients; c; c = c->next)
|
||||||
{
|
{
|
||||||
if(!ishide(c))
|
if(!ishide(c))
|
||||||
@ -99,8 +97,6 @@ maxlayout(void)
|
|||||||
{
|
{
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
tags[seltag].layout.func = maxlayout;
|
|
||||||
|
|
||||||
for(c = nexttiled(clients); c; c = nexttiled(c->next))
|
for(c = nexttiled(clients); c; c = nexttiled(c->next))
|
||||||
{
|
{
|
||||||
c->tile = False;
|
c->tile = False;
|
||||||
@ -171,8 +167,6 @@ tile(void)
|
|||||||
nm = tags[seltag].nmaster;
|
nm = tags[seltag].nmaster;
|
||||||
mht = mh - ((conf.bartop) ? 0 : barheight);
|
mht = mh - ((conf.bartop) ? 0 : barheight);
|
||||||
|
|
||||||
tags[seltag].layout.func = tile;
|
|
||||||
|
|
||||||
/* count all the "can-be-tiled" client */
|
/* count all the "can-be-tiled" client */
|
||||||
for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next), ++n);
|
for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next), ++n);
|
||||||
if(n == 0)
|
if(n == 0)
|
||||||
|
|||||||
1
wmfs.h
1
wmfs.h
@ -41,7 +41,6 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include <sys/time.h>
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
#include <X11/Xproto.h>
|
#include <X11/Xproto.h>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user