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>2014-01-05 17:36:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-05 17:39:13 +0400
commit38bbd9c778d6733f21732df1f51dd2dc5236fa44 (patch)
treeb06c50b76da9d0309e82750313657279ab085f7e /source/blender/blenkernel/BKE_font.h
parentb0ab91c0a4011f8e291aae7be2e03dffc5e2a6e6 (diff)
Text3d: paste additions
- Add paste from system clipboard which behaves like paste from file. - Paste from file now replaces the selection rather then just adding to the end. - Move paste operations into the 'Edit' menu. - Added generic paste functions: font_paste_wchar, font_paste_utf8. - Fix paste max length check not taking the selection length into account.
Diffstat (limited to 'source/blender/blenkernel/BKE_font.h')
-rw-r--r--source/blender/blenkernel/BKE_font.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_font.h b/source/blender/blenkernel/BKE_font.h
index 199b19402aa..9c6a28d674f 100644
--- a/source/blender/blenkernel/BKE_font.h
+++ b/source/blender/blenkernel/BKE_font.h
@@ -60,7 +60,7 @@ typedef struct SelBox {
typedef struct EditFont {
wchar_t *copybuf;
- wchar_t *copybufinfo;
+ struct CharInfo *copybufinfo;
wchar_t *textbuf;
struct CharInfo *textbufinfo;