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:
authorTon Roosendaal <ton@blender.org>2008-12-14 15:16:55 +0300
committerTon Roosendaal <ton@blender.org>2008-12-14 15:16:55 +0300
commita4b6ee672d298a077d6adeac022c6d025d6e082a (patch)
treeef38678c1f2dd499131eb45b362952ff61c2ffc6 /source/blender/editors/util/ed_util.c
parent21e01ccac356a9d8e9dee01c48db54e70ededec7 (diff)
2.5
- Added file space (too) :) Andrea was first, this is more complete. - Suggestion from Joshua: move all standard header buttons to 1 function, makes it all easier, less code, and less area/space stuff needs to be exposed.
Diffstat (limited to 'source/blender/editors/util/ed_util.c')
-rw-r--r--source/blender/editors/util/ed_util.c40
1 files changed, 2 insertions, 38 deletions
diff --git a/source/blender/editors/util/ed_util.c b/source/blender/editors/util/ed_util.c
index 94579c5e91f..841c5cd3cb5 100644
--- a/source/blender/editors/util/ed_util.c
+++ b/source/blender/editors/util/ed_util.c
@@ -38,6 +38,8 @@
#include "BKE_global.h"
+#include "ED_util.h"
+
#include "UI_text.h"
/* ********* general editor util funcs, not BKE stuff please! ********* */
@@ -78,41 +80,3 @@ int GetButStringLength(char *str)
return rt + 15;
}
-char *windowtype_pup(void)
-{
- return(
- "Window type:%t" //14
- "|3D View %x1" //30
-
- "|%l" // 33
-
- "|Ipo Curve Editor %x2" //54
- "|Action Editor %x12" //73
- "|NLA Editor %x13" //94
-
- "|%l" //97
-
- "|UV/Image Editor %x6" //117
-
- "|Video Sequence Editor %x8" //143
- "|Timeline %x15" //163
- "|Audio Window %x11" //163
- "|Text Editor %x9" //179
-
- "|%l" //192
-
-
- "|User Preferences %x7" //213
- "|Outliner %x3" //232
- "|Buttons Window %x4" //251
- "|Node Editor %x16"
- "|%l" //254
-
- "|Image Browser %x10" //273
- "|File Browser %x5" //290
-
- "|%l" //293
-
- "|Scripts Window %x14"//313
- );
-}