Rename panel_select_flags_t -> select_flags_t.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2022-04-10 16:55:38 +03:00
parent 63e870867e
commit f20f5cc5cb
3 changed files with 3 additions and 3 deletions

View File

@ -2528,7 +2528,7 @@ mark_file_left (WPanel * panel)
/* --------------------------------------------------------------------------------------------- */
static mc_search_t *
panel_select_unselect_files_dialog (panel_select_flags_t * flags, const char *title,
panel_select_unselect_files_dialog (select_flags_t * flags, const char *title,
const char *history_name, const char *help_section)
{
gboolean files_only = (*flags & SELECT_FILES_ONLY) != 0;

View File

@ -55,7 +55,7 @@ typedef enum
SELECT_FILES_ONLY = 1 << 0,
SELECT_MATCH_CASE = 1 << 1,
SELECT_SHELL_PATTERNS = 1 << 2
} panel_select_flags_t;
} select_flags_t;
/* run mode and params */

View File

@ -54,7 +54,7 @@ typedef struct
gboolean permission_mode; /* If TRUE, we use permission hilighting */
qsearch_mode_t qsearch_mode; /* Quick search mode */
gboolean torben_fj_mode; /* If TRUE, use some usability hacks by Torben */
panel_select_flags_t select_flags; /* Select/unselect file flags */
select_flags_t select_flags; /* Select/unselect file flags */
} panels_options_t;
typedef struct macro_action_t