rename IDPropertyGroup to PropertyGroup

also renamed IDProperty to PropertyGroupItem (these are not referenced for common usage and we already have 'Property' defined).
This commit is contained in:
2011-02-16 02:51:56 +00:00
parent fee5363912
commit 4c35d8d5a8
10 changed files with 91 additions and 90 deletions

View File

@@ -365,13 +365,13 @@ class RENDER_PT_network_output(NeedValidAddress, NetRenderButtonsPanel, bpy.type
def addProperties():
class NetRenderSettings(bpy.types.IDPropertyGroup):
class NetRenderSettings(bpy.types.PropertyGroup):
pass
class NetRenderSlave(bpy.types.IDPropertyGroup):
class NetRenderSlave(bpy.types.PropertyGroup):
pass
class NetRenderJob(bpy.types.IDPropertyGroup):
class NetRenderJob(bpy.types.PropertyGroup):
pass
bpy.utils.register_class(NetRenderSettings)