mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-01-30 23:14:56 +01:00
make input of completion callbacks const
This commit is contained in:
parent
4efecff654
commit
b693b8735b
1 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@
|
||||||
* @param input The current input
|
* @param input The current input
|
||||||
* @return The completion object or NULL if an error occured
|
* @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
|
* 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
|
* @param input The current input
|
||||||
* @return The completion object or NULL if an error occured
|
* @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
|
#endif // COMPLETION_H
|
||||||
|
|
Loading…
Reference in a new issue