1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-27 02:56:18 -04:00

[session] const in ses_find_frame

This commit is contained in:
Witold Filipczyk 2022-02-25 20:29:32 +01:00
parent fb49777dee
commit f0d1a425a7
2 changed files with 2 additions and 2 deletions

View File

@ -1446,7 +1446,7 @@ reload_frame(struct session *ses, char *name,
struct frame *
ses_find_frame(struct session *ses, char *name)
ses_find_frame(struct session *ses, const char *name)
{
struct location *loc = cur_loc(ses);
struct frame *frame;

View File

@ -306,7 +306,7 @@ void reload_frame(struct session *, char *, cache_mode_T);
void reload(struct session *, cache_mode_T);
void load_frames(struct session *, struct document_view *);
struct frame *ses_find_frame(struct session *, char *);
struct frame *ses_find_frame(struct session *, const char *);
struct frame *ses_find_iframe(struct session *, char *);
void free_files(struct session *);