Here is the spoon...
authorMarkus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:49:11 +0200
changeset 35 024c2932a31f
parent 34 4a35f239fe5b
child 36 f52a9deddfc0
Here is the spoon... committer: Markus Bröker <mbroeker@largo.homelinux.org>
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;
     }
 }