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:
authorAndrea Weikert <elubie@gmx.net>2009-07-06 21:29:32 +0400
committerAndrea Weikert <elubie@gmx.net>2009-07-06 21:29:32 +0400
commit79633056ac3848237d8bb8245523501905582f2e (patch)
tree88b5c1ea5f3f111daf02a1c4f59af0e16ae0916b
parentf08124a3e2e853443d1a2745d66bb9eb0fd4565d (diff)
2.5
* fix for RNA generation dependency in MSVC projectfiles * added missing include
-rw-r--r--projectfiles_vc9/blender/makesrna/RNA_makesrna.vcproj12
-rw-r--r--source/blender/editors/space_file/space_file.c3
2 files changed, 8 insertions, 7 deletions
diff --git a/projectfiles_vc9/blender/makesrna/RNA_makesrna.vcproj b/projectfiles_vc9/blender/makesrna/RNA_makesrna.vcproj
index 1ce97d2740e..35f71c51df4 100644
--- a/projectfiles_vc9/blender/makesrna/RNA_makesrna.vcproj
+++ b/projectfiles_vc9/blender/makesrna/RNA_makesrna.vcproj
@@ -201,7 +201,7 @@
<Tool
Name="VCPostBuildEventTool"
Description="Building RNA"
- CommandLine="CD ..\..\..\source\blender\makesrna\intern\&#x0D;&#x0A;RNA_makesrna.exe .\"
+ CommandLine="CD ..\..\..\source\blender\makesrna\intern\&#x0D;&#x0A;RNA_makesrna.exe .\&#x0D;&#x0A;"
/>
</Configuration>
<Configuration
@@ -310,7 +310,7 @@
>
<Tool
Name="VCPreBuildEventTool"
- CommandLine="DEL ..\..\..\source\blender\makesrna\intern\*_gen.c"
+ CommandLine="del ..\..\..\source\blender\makesrna\intern\rna_*_gen.c"
/>
<Tool
Name="VCCustomBuildTool"
@@ -392,7 +392,7 @@
<Tool
Name="VCPostBuildEventTool"
Description="Building RNA"
- CommandLine="CD ..\..\..\source\blender\makesrna\intern\&#x0D;&#x0A;RNA_makesrna.exe .\"
+ CommandLine="CD ..\..\..\source\blender\makesrna\intern\&#x0D;&#x0A;RNA_makesrna.exe .\&#x0D;&#x0A;"
/>
</Configuration>
<Configuration
@@ -489,7 +489,7 @@
<Tool
Name="VCPostBuildEventTool"
Description="Building RNA"
- CommandLine="CD ..\..\..\source\blender\makesrna\intern\&#x0D;&#x0A;RNA_makesrna.exe .\"
+ CommandLine="CD ..\..\..\source\blender\makesrna\intern\&#x0D;&#x0A;RNA_makesrna.exe .\&#x0D;&#x0A;"
/>
</Configuration>
<Configuration
@@ -504,7 +504,7 @@
>
<Tool
Name="VCPreBuildEventTool"
- CommandLine="DEL ..\..\..\source\blender\makesrna\intern\*_gen.c"
+ CommandLine=""
/>
<Tool
Name="VCCustomBuildTool"
@@ -583,7 +583,7 @@
<Tool
Name="VCPostBuildEventTool"
Description="Building RNA"
- CommandLine="CD ..\..\..\source\blender\makesrna\intern\&#x0D;&#x0A;RNA_makesrna.exe .\"
+ CommandLine="CD ..\..\..\source\blender\makesrna\intern\&#x0D;&#x0A;RNA_makesrna.exe .\&#x0D;&#x0A;"
/>
</Configuration>
</Configurations>
diff --git a/source/blender/editors/space_file/space_file.c b/source/blender/editors/space_file/space_file.c
index 99c0c44078b..9c30a0ed988 100644
--- a/source/blender/editors/space_file/space_file.c
+++ b/source/blender/editors/space_file/space_file.c
@@ -34,6 +34,8 @@
#include "DNA_scene_types.h"
#include "DNA_screen_types.h"
+#include "RNA_access.h"
+
#include "MEM_guardedalloc.h"
#include "BIF_gl.h"
@@ -477,7 +479,6 @@ void ED_spacetype_file(void)
BLI_addhead(&st->regiontypes, art);
file_panels_register(art);
-
BKE_spacetype_register(st);
}