Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pwmt
zathura
Commits
b693b873
Commit
b693b873
authored
Oct 08, 2011
by
Sebastian Ramacher
Browse files
make input of completion callbacks const
parent
4efecff6
Changes
1
Hide whitespace changes
Inline
Side-by-side
completion.h
View file @
b693b873
...
...
@@ -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
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment