Skip to content

Commit 9fd8e43

Browse files
Change whitespace for registering mmMarkerGroupTransform node.
A semi-colon was missing.
1 parent 33eef1b commit 9fd8e43

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

src/pluginMain.cpp

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,16 @@ MStatus initializePlugin(MObject obj) {
143143

144144
// MM Marker Group transform
145145
const MString markerGroupClassification = MM_MARKER_GROUP_DRAW_CLASSIFY;
146-
REGISTER_TRANSFORM(plugin,
147-
MMMarkerGroupTransformNode::nodeName(),
148-
MMMarkerGroupTransformNode::m_id,
149-
MMMarkerGroupTransformNode::creator,
150-
MMMarkerGroupTransformNode::initialize,
151-
MPxTransformationMatrix::baseTransformationMatrixId,
152-
MPxTransformationMatrix::creator,
153-
markerGroupClassification,
154-
status)
146+
REGISTER_TRANSFORM(
147+
plugin,
148+
MMMarkerGroupTransformNode::nodeName(),
149+
MMMarkerGroupTransformNode::m_id,
150+
MMMarkerGroupTransformNode::creator,
151+
MMMarkerGroupTransformNode::initialize,
152+
MPxTransformationMatrix::baseTransformationMatrixId,
153+
MPxTransformationMatrix::creator,
154+
markerGroupClassification,
155+
status);
155156

156157
// Run the Python startup function when the plug-in loads.
157158
bool displayEnabled = false;

0 commit comments

Comments
 (0)