mirror of
https://github.com/davatorium/rofi.git
synced 2025-01-27 15:25:24 -05:00
[SSH] Fix missing parameter documentation
This commit is contained in:
parent
652749081a
commit
13bac230a2
1 changed files with 2 additions and 1 deletions
|
@ -498,6 +498,7 @@ static void ssh_mode_destroy ( Mode *sw )
|
|||
* @param sw Object handle to the SSH Mode object
|
||||
* @param selected_line The line to view
|
||||
* @param state The state of the entry [out]
|
||||
* @param attr_list List of extra rendering attributes to set [out]
|
||||
* @param get_entry
|
||||
*
|
||||
* Gets the string as it should be displayed and the display state.
|
||||
|
@ -505,7 +506,7 @@ static void ssh_mode_destroy ( Mode *sw )
|
|||
*
|
||||
* @return the string as it should be displayed and the display state.
|
||||
*/
|
||||
static char *_get_display_value ( const Mode *sw, unsigned int selected_line, G_GNUC_UNUSED int *state, G_GNUC_UNUSED GList **list, int get_entry )
|
||||
static char *_get_display_value ( const Mode *sw, unsigned int selected_line, G_GNUC_UNUSED int *state, G_GNUC_UNUSED GList **attr_list, int get_entry )
|
||||
{
|
||||
SSHModePrivateData *rmpd = (SSHModePrivateData *) mode_get_private_data ( sw );
|
||||
return get_entry ? g_strdup ( rmpd->hosts_list[selected_line] ) : NULL;
|
||||
|
|
Loading…
Add table
Reference in a new issue