Fix double typedef.

This commit is contained in:
Dave Davenport 2016-02-11 20:24:29 +01:00
parent 11c347fad8
commit 5da7430b1e
1 changed files with 2 additions and 2 deletions

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