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:
authorAlexander Ewering <blender@instinctive.de>2005-06-20 05:28:42 +0400
committerAlexander Ewering <blender@instinctive.de>2005-06-20 05:28:42 +0400
commit4aee690bbdb9c0c5a3c55e16333e08d080b8c78d (patch)
tree6e40e1bf3540f131a1bbc0d9c0009568ac3ec62e /source/blender/include/BIF_editfont.h
parente7e61ba4898ad2c7346f4bf85226f7016280a76c (diff)
Fix for the "Lorem" button. Missing an extern keyword in BIF_editfont.h
(thanks Matthew for spotting this!) Now it should work even on platforms with sane compilers (unlike gcc) :-)
Diffstat (limited to 'source/blender/include/BIF_editfont.h')
-rw-r--r--source/blender/include/BIF_editfont.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/include/BIF_editfont.h b/source/blender/include/BIF_editfont.h
index 5842edc898e..9e57f05ebfa 100644
--- a/source/blender/include/BIF_editfont.h
+++ b/source/blender/include/BIF_editfont.h
@@ -35,7 +35,7 @@
struct Text;
-char *BIF_lorem;
+extern char *BIF_lorem;
void do_textedit(unsigned short event, short val, char _ascii);
void make_editText(void);