From df01744a4f452a4a004af175ca2e79580967e28b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Sat, 17 Oct 2009 23:25:32 +0000 Subject: [PATCH] Fixed missing return... git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33630 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../icon-o-matic/shape/commands/RotatePathIndicesCommand.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/apps/icon-o-matic/shape/commands/RotatePathIndicesCommand.cpp b/src/apps/icon-o-matic/shape/commands/RotatePathIndicesCommand.cpp index 252e44cf36..fafb5c5381 100644 --- a/src/apps/icon-o-matic/shape/commands/RotatePathIndicesCommand.cpp +++ b/src/apps/icon-o-matic/shape/commands/RotatePathIndicesCommand.cpp @@ -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; }