doc: fix warnings from doxygen
This commit is contained in:
parent
d945393405
commit
8919faa7b3
|
@ -24,7 +24,6 @@
|
||||||
#include "objects/client.h"
|
#include "objects/client.h"
|
||||||
|
|
||||||
/** Reban windows following current selected tags.
|
/** Reban windows following current selected tags.
|
||||||
* \param screen The screen to arrange.
|
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
banning_need_update(void)
|
banning_need_update(void)
|
||||||
|
|
10
dbus.c
10
dbus.c
|
@ -42,7 +42,7 @@ static signal_array_t dbus_signals;
|
||||||
|
|
||||||
/** Clean up the D-Bus connection data members
|
/** Clean up the D-Bus connection data members
|
||||||
* \param dbus_connection The D-Bus connection to clean up
|
* \param dbus_connection The D-Bus connection to clean up
|
||||||
* \param dbusio The D-Bus event watcher
|
* \param source The D-Bus source
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
a_dbus_cleanup_bus(DBusConnection *dbus_connection, GSource **source)
|
a_dbus_cleanup_bus(DBusConnection *dbus_connection, GSource **source)
|
||||||
|
@ -459,7 +459,7 @@ a_dbus_process_request(DBusConnection *dbus_connection, DBusMessage *msg)
|
||||||
|
|
||||||
/** Attempt to process all the requests in the D-Bus connection.
|
/** Attempt to process all the requests in the D-Bus connection.
|
||||||
* \param dbus_connection The D-Bus connection to process from
|
* \param dbus_connection The D-Bus connection to process from
|
||||||
* \param dbusio The D-Bus event watcher
|
* \param source The D-Bus source
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
a_dbus_process_requests_on_bus(DBusConnection *dbus_connection, GSource **source)
|
a_dbus_process_requests_on_bus(DBusConnection *dbus_connection, GSource **source)
|
||||||
|
@ -493,8 +493,7 @@ a_dbus_process_requests_on_bus(DBusConnection *dbus_connection, GSource **source
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Foreword D-Bus process session requests on too the correct function.
|
/** Foreword D-Bus process session requests on too the correct function.
|
||||||
* \param w The D-Bus event watcher
|
* \param data
|
||||||
* \param revents (not used)
|
|
||||||
*/
|
*/
|
||||||
static gboolean
|
static gboolean
|
||||||
a_dbus_process_requests_session(gpointer data)
|
a_dbus_process_requests_session(gpointer data)
|
||||||
|
@ -504,8 +503,7 @@ a_dbus_process_requests_session(gpointer data)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Foreword D-Bus process system requests on too the correct function.
|
/** Foreword D-Bus process system requests on too the correct function.
|
||||||
* \param w The D-Bus event watcher
|
* \param data
|
||||||
* \param revents (not used)
|
|
||||||
*/
|
*/
|
||||||
static gboolean
|
static gboolean
|
||||||
a_dbus_process_requests_system(gpointer data)
|
a_dbus_process_requests_system(gpointer data)
|
||||||
|
|
1
draw.c
1
draw.c
|
@ -95,7 +95,6 @@ free_data(void *data)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Create a surface object from this image data.
|
/** Create a surface object from this image data.
|
||||||
* \param L The lua stack.
|
|
||||||
* \param width The width of the image.
|
* \param width The width of the image.
|
||||||
* \param height The height of the image
|
* \param height The height of the image
|
||||||
* \param data The image's data in ARGB format, will be copied by this function.
|
* \param data The image's data in ARGB format, will be copied by this function.
|
||||||
|
|
3
ewmh.c
3
ewmh.c
|
@ -35,7 +35,7 @@
|
||||||
#define _NET_WM_STATE_TOGGLE 2
|
#define _NET_WM_STATE_TOGGLE 2
|
||||||
|
|
||||||
/** Update client EWMH hints.
|
/** Update client EWMH hints.
|
||||||
* \param c The client.
|
* \param L The Lua VM state.
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
ewmh_client_update_hints(lua_State *L)
|
ewmh_client_update_hints(lua_State *L)
|
||||||
|
@ -556,7 +556,6 @@ ewmh_client_check_hints(client_t *c)
|
||||||
|
|
||||||
/** Process the WM strut of a client.
|
/** Process the WM strut of a client.
|
||||||
* \param c The client.
|
* \param c The client.
|
||||||
* \param strut_r (Optional) An existing reply.
|
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
ewmh_process_client_strut(client_t *c)
|
ewmh_process_client_strut(client_t *c)
|
||||||
|
|
|
@ -338,8 +338,6 @@ property_update_wm_protocols(client_t *c, xcb_get_property_cookie_t cookie)
|
||||||
/** The property notify event handler.
|
/** The property notify event handler.
|
||||||
* \param state currently unused
|
* \param state currently unused
|
||||||
* \param window The window to obtain update the property with.
|
* \param window The window to obtain update the property with.
|
||||||
* \param name The protocol atom, currently unused.
|
|
||||||
* \param reply (Optional) An existing reply.
|
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
property_handle_xembed_info(uint8_t state,
|
property_handle_xembed_info(uint8_t state,
|
||||||
|
|
2
stack.c
2
stack.c
|
@ -88,7 +88,7 @@ stack_window_above(xcb_window_t w, xcb_window_t previous)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Stack a client above.
|
/** Stack a client above.
|
||||||
* \param client The client.
|
* \param c The client.
|
||||||
* \param previous The previous client on the stack.
|
* \param previous The previous client on the stack.
|
||||||
* \return The next-previous!
|
* \return The next-previous!
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue