Fixed missing return...

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33630 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2009-10-17 23:25:32 +00:00
parent 2a5ee87029
commit df01744a4f

View File

@ -79,5 +79,7 @@ RotatePathIndicesCommand::_Rotate(bool clockWise)
fPath->RemovePoint(removeIndex);
fPath->AddPoint(point, addIndex);
fPath->SetPoint(addIndex, point, pointIn, pointOut, connected);
return B_OK;
}