mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05: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
|
* Combi Mode
|
||||||
*/
|
*/
|
||||||
typedef struct _CombiModePrivateData
|
typedef struct
|
||||||
{
|
{
|
||||||
// List of (combined) entries.
|
// List of (combined) entries.
|
||||||
unsigned int cmd_list_length;
|
unsigned int cmd_list_length;
|
||||||
|
|
|
@ -49,7 +49,7 @@ struct range_pair
|
||||||
unsigned int start;
|
unsigned int start;
|
||||||
unsigned int stop;
|
unsigned int stop;
|
||||||
};
|
};
|
||||||
typedef struct _DmenuModePrivateData
|
typedef struct
|
||||||
{
|
{
|
||||||
char *prompt;
|
char *prompt;
|
||||||
unsigned int selected_line;
|
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.
|
* Store extra information about the entry.
|
||||||
* Currently the executable and if it should run in terminal.
|
* Currently the executable and if it should run in terminal.
|
||||||
*/
|
*/
|
||||||
typedef struct _DRunModeEntry
|
typedef struct
|
||||||
{
|
{
|
||||||
/* Path to desktop file */
|
/* Path to desktop file */
|
||||||
char *path;
|
char *path;
|
||||||
|
@ -101,7 +101,7 @@ typedef struct _DRunModeEntry
|
||||||
unsigned int terminal;
|
unsigned int terminal;
|
||||||
} DRunModeEntry;
|
} DRunModeEntry;
|
||||||
|
|
||||||
typedef struct _DRunModePrivateData
|
typedef struct
|
||||||
{
|
{
|
||||||
DRunModeEntry *entry_list;
|
DRunModeEntry *entry_list;
|
||||||
unsigned int cmd_list_length;
|
unsigned int cmd_list_length;
|
||||||
|
|
|
@ -57,7 +57,7 @@
|
||||||
/**
|
/**
|
||||||
* The internal data structure holding the private data of the Run Mode.
|
* The internal data structure holding the private data of the Run Mode.
|
||||||
*/
|
*/
|
||||||
typedef struct _RunModePrivateData
|
typedef struct
|
||||||
{
|
{
|
||||||
/** list of available commands. */
|
/** list of available commands. */
|
||||||
char **cmd_list;
|
char **cmd_list;
|
||||||
|
|
|
@ -91,7 +91,7 @@ static void script_switcher_free ( Mode *sw )
|
||||||
g_free ( sw );
|
g_free ( sw );
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef struct _ScriptModePrivateData
|
typedef struct
|
||||||
{
|
{
|
||||||
unsigned int id;
|
unsigned int id;
|
||||||
char **cmd_list;
|
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.
|
* The internal data structure holding the private data of the SSH Mode.
|
||||||
*/
|
*/
|
||||||
typedef struct _SSHModePrivateData
|
typedef struct
|
||||||
{
|
{
|
||||||
/** List if available ssh hosts.*/
|
/** List if available ssh hosts.*/
|
||||||
char **hosts_list;
|
char **hosts_list;
|
||||||
|
|
|
@ -300,7 +300,7 @@ static client* window_client ( xcb_window_t win )
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef struct _ModeModePrivateData
|
typedef struct
|
||||||
{
|
{
|
||||||
unsigned int id;
|
unsigned int id;
|
||||||
char **cmd_list;
|
char **cmd_list;
|
||||||
|
|
Loading…
Reference in a new issue