Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-08-02 15:53:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-02 15:53:48 +0400
commit3148c0f203ba23bead40e4e037bcc9a1eb27278b (patch)
tree1e91d053095e10a4b7afa1c392bb7525d3967cbe /curve_simplify.py
parentd566152b0372d1d29578c3353f6a4d5ff3af4d63 (diff)
update addons to work with new register/unregister method,
These scritps still need changes related to parent classes - mesh_surface_sketch.py - render_renderfarmfi.py - space_view3d_align_tools.py - object_cloud_gen.py
Diffstat (limited to 'curve_simplify.py')
-rw-r--r--curve_simplify.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/curve_simplify.py b/curve_simplify.py
index 175fffb9..bd7e6464 100644
--- a/curve_simplify.py
+++ b/curve_simplify.py
@@ -586,12 +586,10 @@ class CURVE_OT_simplify(bpy.types.Operator):
#### REGISTER ###################################
#################################################
def register():
- bpy.types.register(CURVE_OT_simplify)
- bpy.types.register(GRAPH_OT_simplify)
+ pass
def unregister():
- bpy.types.unregister(CURVE_OT_simplify)
- bpy.types.unregister(GRAPH_OT_simplify)
+ pass
if __name__ == "__main__":
register()