rename loadprops to client_loadprops
This commit is contained in:
parent
bb1381abc2
commit
e53b941679
4
client.c
4
client.c
|
@ -41,7 +41,7 @@
|
||||||
* \param ntags tags number
|
* \param ntags tags number
|
||||||
*/
|
*/
|
||||||
static Bool
|
static Bool
|
||||||
loadprops(Client * c, VirtScreen *scr)
|
client_loadprops(Client * c, VirtScreen *scr)
|
||||||
{
|
{
|
||||||
int i, ntags = 0;
|
int i, ntags = 0;
|
||||||
Tag *tag;
|
Tag *tag;
|
||||||
|
@ -270,7 +270,7 @@ client_manage(Window w, XWindowAttributes *wa, awesome_config *awesomeconf, int
|
||||||
client_updatetitle(c);
|
client_updatetitle(c);
|
||||||
|
|
||||||
/* loadprops or apply rules if no props */
|
/* loadprops or apply rules if no props */
|
||||||
if(!loadprops(c, &awesomeconf->screens[screen]))
|
if(!client_loadprops(c, &awesomeconf->screens[screen]))
|
||||||
tag_client_with_rules(c, awesomeconf);
|
tag_client_with_rules(c, awesomeconf);
|
||||||
|
|
||||||
screen_info = get_screen_info(awesomeconf->display, screen, NULL, NULL);
|
screen_info = get_screen_info(awesomeconf->display, screen, NULL, NULL);
|
||||||
|
|
Loading…
Reference in New Issue