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:
parent
11c347fad8
commit
5da7430b1e
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue