mirror of
https://github.com/lbonn/rofi
synced 2024-11-14 08:07:16 +00:00
Hit 100% doxy coverage again, remove attribute it chokes on
This commit is contained in:
parent
77f08c08d5
commit
49f58a33f5
1 changed files with 7 additions and 7 deletions
|
@ -41,7 +41,7 @@ typedef enum
|
|||
*
|
||||
* @returns The command issued (see MenuReturn)
|
||||
*/
|
||||
RofiViewState *rofi_view_create ( Mode *sw, const char *input, const char *message, MenuFlags flags, void ( *finalize )( RofiViewState * ) ) __attribute__ ( ( nonnull ( 1, 2, 5 ) ) );
|
||||
RofiViewState *rofi_view_create ( Mode *sw, const char *input, const char *message, MenuFlags flags, void ( *finalize )( RofiViewState * ) );
|
||||
|
||||
/**
|
||||
* @param state The Menu Handle
|
||||
|
@ -229,6 +229,12 @@ void rofi_view_clear_input ( RofiViewState *state );
|
|||
* TODO: Internal call to view exposed.
|
||||
*/
|
||||
void __create_window ( MenuFlags menu_flags );
|
||||
/**
|
||||
* Get the handle of the main window.
|
||||
*
|
||||
* @returns the xcb_window_t for rofi's view or XCB_WINDOW_NONE.
|
||||
*/
|
||||
xcb_window_t rofi_view_get_window ( void );
|
||||
/** @} */
|
||||
|
||||
/***
|
||||
|
@ -248,11 +254,5 @@ void rofi_view_workers_initialize ( void );
|
|||
* Stop all threads and free the resources used by the threadpool
|
||||
*/
|
||||
void rofi_view_workers_finalize ( void );
|
||||
/**
|
||||
* Get the handle of the main window.
|
||||
*
|
||||
* @returns the xcb_window_t for rofi's view or XCB_WINDOW_NONE.
|
||||
*/
|
||||
xcb_window_t rofi_view_get_window ( void );
|
||||
/**@}*/
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue