Cleanup unused type specifier (dialogs).

This commit is contained in:
Dave Davenport 2016-03-24 22:15:10 +01:00
parent c4b65d975c
commit 2127682573
7 changed files with 8 additions and 8 deletions

View File

@ -35,7 +35,7 @@
/**
* Combi Mode
*/
typedef struct _CombiModePrivateData
typedef struct
{
// List of (combined) entries.
unsigned int cmd_list_length;

View File

@ -49,7 +49,7 @@ struct range_pair
unsigned int start;
unsigned int stop;
};
typedef struct _DmenuModePrivateData
typedef struct
{
char *prompt;
unsigned int selected_line;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;