Various doc comment fixes.

This commit is contained in:
Aldo Cortesi 2007-12-16 13:14:47 +11:00 committed by Julien Danjou
parent 2f74c079aa
commit 6e8b1383fe
5 changed files with 7 additions and 8 deletions

View File

@ -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()

View File

@ -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

View File

@ -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)

View File

@ -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)

View File

@ -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