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-11-18 16:51:02 +0300
committerTon Roosendaal <ton@blender.org>2008-11-18 16:51:02 +0300
commit13ac9079cccff2364c42ffdc708ea951dbe410ca (patch)
tree16226593a5d676f32a4ddd6f4000e84d233fa2be /source/blender/windowmanager/wm_window.h
parentc3da1af01c1584a8e23b9c6875bcb784fec00ed5 (diff)
Cleanup of area-rip operator
- moved from WM to Screen code (it uses active area) - less code :) result of cleaning some calls - added WM_window_open() to WM API for this - now opens new window on top of area, and leaves old screen unaffected (simple, atomic, the 'do not think for user' convention :)
Diffstat (limited to 'source/blender/windowmanager/wm_window.h')
-rw-r--r--source/blender/windowmanager/wm_window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/wm_window.h b/source/blender/windowmanager/wm_window.h
index df77bdc0082..b02a16304cb 100644
--- a/source/blender/windowmanager/wm_window.h
+++ b/source/blender/windowmanager/wm_window.h
@@ -34,7 +34,7 @@ struct bScreen;
/* *************** internal api ************** */
void wm_ghost_init (bContext *C);
-wmWindow *wm_window_new (bContext *C, struct bScreen *screen);
+wmWindow *wm_window_new (bContext *C);
void wm_window_free (bContext *C, wmWindow *win);
void wm_window_add_ghostwindows (wmWindowManager *wm);
void wm_window_process_events (int wait_for_event);