replace strnlen with BLI_strnlen, make some args const - no functional changes.

This commit is contained in:
2011-09-26 17:30:56 +00:00
parent fbdfdfefd8
commit dc76be62d9
6 changed files with 26 additions and 29 deletions

View File

@@ -576,7 +576,7 @@ void uiButSetFocusOnEnter (struct wmWindow *win, uiBut *but);
typedef struct AutoComplete AutoComplete;
AutoComplete *autocomplete_begin(const char *startname, int maxlen);
AutoComplete *autocomplete_begin(const char *startname, size_t maxlen);
void autocomplete_do_name(AutoComplete *autocpl, const char *name);
void autocomplete_end(AutoComplete *autocpl, char *autoname);