pedantic word ordering change.

- wm.add_modal_handler -> modal_handler_add
- wm.add_fileselect -> fileselect_add
- ob.add_shape_key -> shape_key_add
- VIEW3D_OT_add_background_image -> VIEW3D_OT_background_image_add (same for remove)

Also made 2 internal cmake vars hidden.
This commit is contained in:
2010-12-08 11:42:11 +00:00
parent 40af167b09
commit 1622385445
22 changed files with 46 additions and 46 deletions

View File

@@ -506,7 +506,7 @@ class WM_OT_context_modal_mouse(bpy.types.Operator):
else:
self.initial_x = event.mouse_x
context.window_manager.add_modal_handler(self)
context.window_manager.modal_handler_add(self)
return {'RUNNING_MODAL'}