Skip to content

Commit

Permalink
Compile under Houdini 16.
Browse files Browse the repository at this point in the history
Remove deprecated and defunct functions.
Line changed: 230(deprecated), 250(deprecated) and 254(defunct)
  • Loading branch information
PradeepBarua committed May 7, 2017
1 parent f6e9624 commit 6203c5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SOP/SOP_IdAttribCopy/SOP_IdAttribCopy.C
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ SOP_IdAttribCopy::cookInputGroups(OP_Context &context, int alone=0)
// If the group string is not null, then we try to parse the group.
if (grp_name.isstring())
{
myGroup = parsePointGroups((const char *)grp_name, pgdp);
myGroup = parsePointGroups((const char *)grp_name, GroupCreator(pgdp, false));

// If the group is not valid, then the group string is invalid
// as well. Thus, we add an error to this SOP.
Expand All @@ -247,11 +247,11 @@ SOP_IdAttribCopy::cookInputGroups(OP_Context &context, int alone=0)
{
// If no group string is specified, then we operate on the entire
// geometry, so we highlight every point for this SOP.
select(GU_SPoint);
select(GA_GROUP_POINT);
}

// This is where we notify our handles (if any) if the inputs have changed.
checkInputChanged(0, -1, myDetailGroupPair, pgdp, myGroup);
notifyGroupParmListeners(0, -1, (const GU_Detail *)pgdp, myGroup);

// If we are called by the handles, then we have to unlock our inputs.
if (alone)
Expand Down

0 comments on commit 6203c5c

Please sign in to comment.