Changed function argument names.

Changed function argument names to suppress compile warnings:
panel.h:143: warning: declaration of 'index' shadows a global declaration
panel.h:144: warning: declaration of 'index' shadows a global declaration

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2010-04-01 21:18:13 +04:00
parent c0f6a3bd1d
commit fc43eba894
1 changed files with 4 additions and 4 deletions

View File

@ -81,7 +81,7 @@ typedef struct WPanel {
int dirty; /* Should we redisplay the panel? */
int user_mini_status; /* Is user_status_format used */
int user_mini_status; /* Is user_status_format used */
char *user_format; /* User format */
char *user_status_format[LIST_TYPES];/* User format for status line */
@ -140,8 +140,8 @@ void select_item (WPanel *panel);
extern Hook *select_file_hook;
void recalculate_panel_summary (WPanel *panel);
void file_mark (WPanel *panel, int index, int val);
void do_file_mark (WPanel *panel, int index, int val);
void file_mark (WPanel *panel, int idx, int val);
void do_file_mark (WPanel *panel, int idx, int val);
void directory_history_next (WPanel *panel);
void directory_history_prev (WPanel *panel);
@ -158,4 +158,4 @@ const char **panel_get_user_possible_fields(gsize *);
void panel_init(void);
void panel_deinit(void);
#endif
#endif /* MC_PANEL_H */