All functions in alphabetical order except for this one.

This commit is contained in:
Christopher Drelich 2018-03-14 13:58:06 -04:00 committed by Hiltjo Posthuma
parent 3cb34830eb
commit 76c8c16d79
1 changed files with 9 additions and 9 deletions

18
dwm.c
View File

@ -223,8 +223,8 @@ static void updateclientlist(void);
static void updatenumlockmask(void);
static void updatesizehints(Client *c);
static void updatestatus(void);
static void updatewindowtype(Client *c);
static void updatetitle(Client *c);
static void updatewindowtype(Client *c);
static void updatewmhints(Client *c);
static void view(const Arg *arg);
static Client *wintoclient(Window w);
@ -1984,6 +1984,14 @@ updatesizehints(Client *c)
c->isfixed = (c->maxw && c->maxh && c->maxw == c->minw && c->maxh == c->minh);
}
void
updatestatus(void)
{
if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
strcpy(stext, "dwm-"VERSION);
drawbar(selmon);
}
void
updatetitle(Client *c)
{
@ -1993,14 +2001,6 @@ updatetitle(Client *c)
strcpy(c->name, broken);
}
void
updatestatus(void)
{
if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
strcpy(stext, "dwm-"VERSION);
drawbar(selmon);
}
void
updatewindowtype(Client *c)
{