# HG changeset patch
# User Markus Bröker <mbroeker@largo.dyndns.tv>
# Date 1239878951 -7200
# Node ID 024c2932a31ffbac145f87eff92b5148a501d167
# Parent  4a35f239fe5b35f21da14e38b9785486d6402581
Here is the spoon...

committer: Markus Bröker <mbroeker@largo.homelinux.org>

diff --git a/pmc/cube.cc b/pmc/cube.cc
--- a/pmc/cube.cc
+++ b/pmc/cube.cc
@@ -32,12 +32,12 @@
 
 void Cube::move (Vector location)
 {
-	Vector *p_tmp;
+    Vector *p_tmp;
 
     for (int i = 0; i < 8; i++) {
         p_tmp = new Vector (*P[i] + location);
-		delete P[i];
-		P[i] = p_tmp;
+        delete P[i];
+        P[i] = p_tmp;
     }
 }