mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-25 13:55:34 -05:00
Fix double typedef.
This commit is contained in:
parent
11c347fad8
commit
5da7430b1e
1 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
||||||
*/
|
*/
|
||||||
// State of the menu.
|
// State of the menu.
|
||||||
|
|
||||||
typedef struct RofiViewState
|
struct RofiViewState
|
||||||
{
|
{
|
||||||
Mode *sw;
|
Mode *sw;
|
||||||
unsigned int menu_lines;
|
unsigned int menu_lines;
|
||||||
|
@ -70,6 +70,6 @@ typedef struct RofiViewState
|
||||||
// Handlers.
|
// Handlers.
|
||||||
void ( *x11_event_loop )( struct RofiViewState *state, XEvent *ev );
|
void ( *x11_event_loop )( struct RofiViewState *state, XEvent *ev );
|
||||||
void ( *finalize )( struct RofiViewState *state );
|
void ( *finalize )( struct RofiViewState *state );
|
||||||
}RofiViewState;
|
};
|
||||||
/** @} */
|
/** @} */
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue