1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -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.
typedef struct RofiViewState
struct RofiViewState
{
Mode *sw;
unsigned int menu_lines;
@ -70,6 +70,6 @@ typedef struct RofiViewState
// Handlers.
void ( *x11_event_loop )( struct RofiViewState *state, XEvent *ev );
void ( *finalize )( struct RofiViewState *state );
}RofiViewState;
};
/** @} */
#endif