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 20:24:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-31 20:24:49 +0400
commitdd62a2c3756d4335479a561a52468a548f2f1d65 (patch)
tree2a4a40d8148cb3d14155e47e59b09e3305495be8 /source/blender/blenkernel/BKE_text.h
parentf54b6eee45cf24450076d39c3fa3bd0d4e21f564 (diff)
text autocomplete
- make the popup box line up the X axis with the current word. - add poll function for the operator
Diffstat (limited to 'source/blender/blenkernel/BKE_text.h')
-rw-r--r--source/blender/blenkernel/BKE_text.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_text.h b/source/blender/blenkernel/BKE_text.h
index accac8694a9..1e3dd426efa 100644
--- a/source/blender/blenkernel/BKE_text.h
+++ b/source/blender/blenkernel/BKE_text.h
@@ -106,6 +106,7 @@ int text_check_delim(const char ch);
int text_check_digit(const char ch);
int text_check_identifier(const char ch);
int text_check_whitespace(const char ch);
+int text_find_identifier_start(const char *str, int i);
enum {
TXT_MOVE_LINE_UP = -1,