Various doc comment fixes.
This commit is contained in:
parent
2f74c079aa
commit
6e8b1383fe
|
@ -147,7 +147,6 @@ cleanup()
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Scan X to find windows to manage
|
/** Scan X to find windows to manage
|
||||||
* \param screen Screen number
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
scan()
|
scan()
|
||||||
|
|
5
client.c
5
client.c
|
@ -78,7 +78,8 @@ client_loadprops(Client * c, int screen)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Check if client supports protocol WM_DELETE_WINDOW
|
/** Check if client supports protocol WM_DELETE_WINDOW
|
||||||
* \param c the client
|
* \param disp the display
|
||||||
|
* \win the Window
|
||||||
* \return True if client has WM_DELETE_WINDOW
|
* \return True if client has WM_DELETE_WINDOW
|
||||||
*/
|
*/
|
||||||
static Bool
|
static Bool
|
||||||
|
@ -99,6 +100,7 @@ isprotodel(Display *disp, Window win)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Swap two client in the linked list clients
|
/** Swap two client in the linked list clients
|
||||||
|
* \param head pointer ito the client list head
|
||||||
* \param c1 first client
|
* \param c1 first client
|
||||||
* \param c2 second client
|
* \param c2 second client
|
||||||
*/
|
*/
|
||||||
|
@ -175,7 +177,6 @@ client_attach(Client *c)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Detach client from clients list
|
/** Detach client from clients list
|
||||||
* \param head client list
|
|
||||||
* \param c client to detach
|
* \param c client to detach
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
|
|
6
config.c
6
config.c
|
@ -245,8 +245,7 @@ static Key *section_keys(cfg_t *cfg_keys)
|
||||||
|
|
||||||
|
|
||||||
/** Parse configuration file and initialize some stuff
|
/** Parse configuration file and initialize some stuff
|
||||||
* \param disp Display ref
|
* \param configpatharg Path to configuration file
|
||||||
* \param scr Screen number
|
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
parse_config(const char *confpatharg)
|
parse_config(const char *confpatharg)
|
||||||
|
@ -662,10 +661,9 @@ get_numlockmask(Display *disp)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Initialize color from X side
|
/** Initialize color from X side
|
||||||
* \param colorstr Color code
|
|
||||||
* \param disp Display ref
|
* \param disp Display ref
|
||||||
* \param scr Screen number
|
* \param scr Screen number
|
||||||
* \return XColor pixel
|
* \param colorstr Color code
|
||||||
*/
|
*/
|
||||||
static XColor
|
static XColor
|
||||||
initxcolor(Display *disp, int scr, const char *colstr)
|
initxcolor(Display *disp, int scr, const char *colstr)
|
||||||
|
|
2
layout.c
2
layout.c
|
@ -50,7 +50,7 @@ get_current_tag(int screen)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Arrange windows following current selected layout
|
/** Arrange windows following current selected layout
|
||||||
* \param disp display ref
|
* \param screen the screen to arrange
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
arrange(int screen)
|
arrange(int screen)
|
||||||
|
|
1
window.c
1
window.c
|
@ -88,6 +88,7 @@ window_configure(Display *disp, Window win, int x, int y, int w, int h, int bord
|
||||||
|
|
||||||
/** Grab or ungrab buttons on a window
|
/** Grab or ungrab buttons on a window
|
||||||
* \param disp Display ref
|
* \param disp Display ref
|
||||||
|
* \param screen The screen
|
||||||
* \param focused True if client is focused
|
* \param focused True if client is focused
|
||||||
* \param raised True if the client is above other clients
|
* \param raised True if the client is above other clients
|
||||||
* \param modkey Mod key mask
|
* \param modkey Mod key mask
|
||||||
|
|
Loading…
Reference in New Issue