mirror of
https://github.com/lbonn/rofi
synced 2024-11-15 16:38:00 +00:00
Cleanup unused type specifier (dialogs).
This commit is contained in:
parent
c4b65d975c
commit
2127682573
7 changed files with 8 additions and 8 deletions
|
@ -35,7 +35,7 @@
|
|||
/**
|
||||
* Combi Mode
|
||||
*/
|
||||
typedef struct _CombiModePrivateData
|
||||
typedef struct
|
||||
{
|
||||
// List of (combined) entries.
|
||||
unsigned int cmd_list_length;
|
||||
|
|
|
@ -49,7 +49,7 @@ struct range_pair
|
|||
unsigned int start;
|
||||
unsigned int stop;
|
||||
};
|
||||
typedef struct _DmenuModePrivateData
|
||||
typedef struct
|
||||
{
|
||||
char *prompt;
|
||||
unsigned int selected_line;
|
||||
|
|
|
@ -87,7 +87,7 @@ static void exec_cmd ( const char *cmd, int run_in_term )
|
|||
* Store extra information about the entry.
|
||||
* Currently the executable and if it should run in terminal.
|
||||
*/
|
||||
typedef struct _DRunModeEntry
|
||||
typedef struct
|
||||
{
|
||||
/* Path to desktop file */
|
||||
char *path;
|
||||
|
@ -101,7 +101,7 @@ typedef struct _DRunModeEntry
|
|||
unsigned int terminal;
|
||||
} DRunModeEntry;
|
||||
|
||||
typedef struct _DRunModePrivateData
|
||||
typedef struct
|
||||
{
|
||||
DRunModeEntry *entry_list;
|
||||
unsigned int cmd_list_length;
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
/**
|
||||
* The internal data structure holding the private data of the Run Mode.
|
||||
*/
|
||||
typedef struct _RunModePrivateData
|
||||
typedef struct
|
||||
{
|
||||
/** list of available commands. */
|
||||
char **cmd_list;
|
||||
|
|
|
@ -91,7 +91,7 @@ static void script_switcher_free ( Mode *sw )
|
|||
g_free ( sw );
|
||||
}
|
||||
|
||||
typedef struct _ScriptModePrivateData
|
||||
typedef struct
|
||||
{
|
||||
unsigned int id;
|
||||
char **cmd_list;
|
||||
|
|
|
@ -349,7 +349,7 @@ static char ** get_ssh ( unsigned int *length )
|
|||
/**
|
||||
* The internal data structure holding the private data of the SSH Mode.
|
||||
*/
|
||||
typedef struct _SSHModePrivateData
|
||||
typedef struct
|
||||
{
|
||||
/** List if available ssh hosts.*/
|
||||
char **hosts_list;
|
||||
|
|
|
@ -300,7 +300,7 @@ static client* window_client ( xcb_window_t win )
|
|||
return c;
|
||||
}
|
||||
|
||||
typedef struct _ModeModePrivateData
|
||||
typedef struct
|
||||
{
|
||||
unsigned int id;
|
||||
char **cmd_list;
|
||||
|
|
Loading…
Reference in a new issue