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:
Diffstat (limited to 'source/blender/windowmanager/intern/wm_init_exit.c')
-rw-r--r--source/blender/windowmanager/intern/wm_init_exit.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c
index 0bc35ffa9b2..5938677afe7 100644
--- a/source/blender/windowmanager/intern/wm_init_exit.c
+++ b/source/blender/windowmanager/intern/wm_init_exit.c
@@ -51,6 +51,7 @@
#include "BKE_global.h"
#include "BKE_library.h"
#include "BKE_mball.h"
+#include "BKE_report.h"
#include "BKE_utildefines.h"
#include "BKE_packedFile.h"
@@ -100,6 +101,22 @@ static void sound_init_listener(void)
G.listener->dopplervelocity = 340.29f;
}
+
+static void wm_init_reports(bContext *C)
+{
+ wmWindowManager *wm= CTX_wm_manager(C);
+ wm->reports= MEM_callocN(sizeof(ReportList), "wmReportList");
+ BKE_reports_init(wm->reports, RPT_STORE);
+}
+static void wm_free_reports(bContext *C)
+{
+ wmWindowManager *wm= CTX_wm_manager(C);
+ BKE_reports_clear(wm->reports);
+ MEM_freeN(wm->reports);
+}
+
+
+
/* only called once, for startup */
void WM_init(bContext *C)
{
@@ -124,6 +141,8 @@ void WM_init(bContext *C)
/* get the default database, plus a wm */
WM_read_homefile(C, NULL);
+ wm_init_reports(C); /* reports cant be initialized before the wm */
+
UI_init();
// clear_matcopybuf(); /* XXX */
@@ -256,6 +275,8 @@ void WM_exit(bContext *C)
RNA_exit();
+ wm_free_reports(C);
+
CTX_free(C);
if(MEM_get_memory_blocks_in_use()!=0) {