mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 20:46:08 +01:00
make input of completion callbacks const
This commit is contained in:
parent
4efecff654
commit
b693b8735b
@ -13,7 +13,7 @@
|
||||
* @param input The current input
|
||||
* @return The completion object or NULL if an error occured
|
||||
*/
|
||||
girara_completion_t* cc_open(girara_session_t* session, char* input);
|
||||
girara_completion_t* cc_open(girara_session_t* session, const char* input);
|
||||
|
||||
/**
|
||||
* Completion for the bmarks command - Creates a list of bookmarks
|
||||
@ -22,7 +22,7 @@ girara_completion_t* cc_open(girara_session_t* session, char* input);
|
||||
* @param input The current input
|
||||
* @return The completion object or NULL if an error occured
|
||||
*/
|
||||
girara_completion_t* cc_bookmarks(girara_session_t* session, char* input);
|
||||
girara_completion_t* cc_bookmarks(girara_session_t* session, const char* input);
|
||||
|
||||
|
||||
#endif // COMPLETION_H
|
||||
|
Loading…
Reference in New Issue
Block a user