--- src/canvascard.h 2008-09-29 23:49:56.000000000 +0200 +++ src/canvascard.h_new 2008-09-29 23:49:44.000000000 +0200 @@ -41,7 +41,7 @@ void setRotation( int d ); void animatedMove(); - void setDestination( int x, int x ); + void setDestination( int x, int y ); int rtti() const { return CANVASCARD; } --- src/schafkopf.cpp.orig 2009-09-20 17:32:48.176791090 +0200 +++ src/schafkopf.cpp 2009-09-20 17:33:40.664793567 +0200 @@ -246,15 +246,15 @@ // so why is it there??? // stupid comments... if( data->returncode ) - delete data->returncode; + free (data->returncode); if( data->cardids ) - delete [] data->cardids; + free (data->cardids); if( data->playernames ) - delete data->playernames; + free (data->playernames); - delete data; + free (data); } } } --- src/schafkopf.h.orig 2009-09-20 19:07:11.435791946 +0200 +++ src/schafkopf.h 2009-09-20 19:07:05.273795412 +0200 @@ -25,6 +25,7 @@ #include #endif +#include #include #include