Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-12-31 18:49:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-31 18:49:27 +0400
commitacc05db50faa7323e32bab988b2f28e1bb05bc51 (patch)
treeb0011d670f778c243ff81cf7d455ef298b1b0233 /source/blender/blenkernel/BKE_suggestions.h
parent334ca1d344123f4d8f54c16cf93dab9f2fdae88f (diff)
minor updates to text autocomplete api
- draw function wasn't lining up correctly since DPI edits - rename text_python.c to text_autocomplete.c
Diffstat (limited to 'source/blender/blenkernel/BKE_suggestions.h')
-rw-r--r--source/blender/blenkernel/BKE_suggestions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_suggestions.h b/source/blender/blenkernel/BKE_suggestions.h
index 9b61d9141fb..c36a2d61968 100644
--- a/source/blender/blenkernel/BKE_suggestions.h
+++ b/source/blender/blenkernel/BKE_suggestions.h
@@ -75,7 +75,7 @@ short texttool_text_is_active(Text *text);
/* Suggestions */
void texttool_suggest_add(const char *name, char type);
-void texttool_suggest_prefix(const char *prefix);
+void texttool_suggest_prefix(const char *prefix, const int prefix_len);
void texttool_suggest_clear(void);
SuggItem *texttool_suggest_first(void);
SuggItem *texttool_suggest_last(void);