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:
authorDalai Felinto <dalai@blender.org>2020-03-06 21:48:18 +0300
committerDalai Felinto <dalai@blender.org>2020-03-06 22:07:02 +0300
commit558f449f8c4b212302a2530daecda9346ea10177 (patch)
tree19b9972cc9a28276d9d42e2784b6b72b3d8b8983 /source/blender/blenkernel/BKE_text.h
parent717786231341f15643bffef54d6a122ab34b7e92 (diff)
Cleanup: Text: Move to IDTypeInfo and remove unused BKE API.
Diffstat (limited to 'source/blender/blenkernel/BKE_text.h')
-rw-r--r--source/blender/blenkernel/BKE_text.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/blenkernel/BKE_text.h b/source/blender/blenkernel/BKE_text.h
index c999a50c48b..51d589e61c3 100644
--- a/source/blender/blenkernel/BKE_text.h
+++ b/source/blender/blenkernel/BKE_text.h
@@ -32,8 +32,6 @@ struct Text;
struct TextLine;
void BKE_text_free_lines(struct Text *text);
-void BKE_text_free(struct Text *text);
-void BKE_text_init(struct Text *ta);
struct Text *BKE_text_add(struct Main *bmain, const char *name);
int txt_extended_ascii_as_utf8(char **str);
bool BKE_text_reload(struct Text *text);
@@ -42,12 +40,7 @@ struct Text *BKE_text_load_ex(struct Main *bmain,
const char *relpath,
const bool is_internal);
struct Text *BKE_text_load(struct Main *bmain, const char *file, const char *relpath);
-void BKE_text_copy_data(struct Main *bmain,
- struct Text *ta_dst,
- const struct Text *ta_src,
- const int flag);
struct Text *BKE_text_copy(struct Main *bmain, const struct Text *ta);
-void BKE_text_make_local(struct Main *bmain, struct Text *text, const int flags);
void BKE_text_clear(struct Text *text);
void BKE_text_write(struct Text *text, const char *str);
int BKE_text_file_modified_check(struct Text *text);