1
0
Fork 0
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:
Dave Davenport 2016-02-11 20:24:29 +01:00
parent 11c347fad8
commit 5da7430b1e

View file

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