[haiku-commits] r33630 - haiku/trunk/src/apps/icon-o-matic/shape/commands

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 18 Oct 2009 01:25:32 +0200 (CEST)

Author: stippi
Date: 2009-10-18 01:25:32 +0200 (Sun, 18 Oct 2009)
New Revision: 33630
Changeset: http://dev.haiku-os.org/changeset/33630/haiku

Modified:
   haiku/trunk/src/apps/icon-o-matic/shape/commands/RotatePathIndicesCommand.cpp
Log:
Fixed missing return...


Modified: 
haiku/trunk/src/apps/icon-o-matic/shape/commands/RotatePathIndicesCommand.cpp
===================================================================
--- 
haiku/trunk/src/apps/icon-o-matic/shape/commands/RotatePathIndicesCommand.cpp   
    2009-10-17 22:46:27 UTC (rev 33629)
+++ 
haiku/trunk/src/apps/icon-o-matic/shape/commands/RotatePathIndicesCommand.cpp   
    2009-10-17 23:25:32 UTC (rev 33630)
@@ -79,5 +79,7 @@
        fPath->RemovePoint(removeIndex);
        fPath->AddPoint(point, addIndex);
        fPath->SetPoint(addIndex, point, pointIn, pointOut, connected);
+
+       return B_OK;
 }
 


Other related posts:

  • » [haiku-commits] r33630 - haiku/trunk/src/apps/icon-o-matic/shape/commands - superstippi