Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 277665
Collapse All | Expand All

(-)src/canvascard.h (-1 / +1 lines)
Lines 41-47 Link Here
41
        void setRotation( int d );
41
        void setRotation( int d );
42
        
42
        
43
        void animatedMove();
43
        void animatedMove();
44
        void setDestination( int x, int x );
44
        void setDestination( int x, int y );
45
45
46
        
46
        
47
        int rtti() const { return CANVASCARD; }
47
        int rtti() const { return CANVASCARD; }
(-)src/schafkopf.cpp.orig (-4 / +4 lines)
Lines 246-260 Link Here
246
            // so why is it there???
246
            // so why is it there???
247
            // stupid comments...
247
            // stupid comments...
248
            if( data->returncode )
248
            if( data->returncode )
249
                delete data->returncode;
249
                free (data->returncode);
250
                
250
                
251
            if( data->cardids )
251
            if( data->cardids )
252
                delete [] data->cardids;
252
                free (data->cardids);
253
253
254
            if( data->playernames )
254
            if( data->playernames )
255
                delete data->playernames;
255
                free (data->playernames);
256
                
256
                
257
            delete data;
257
            free (data);
258
        }
258
        }
259
    }
259
    }
260
}
260
}
(-)src/schafkopf.h.orig (+1 lines)
Lines 25-30 Link Here
25
#include <config.h>
25
#include <config.h>
26
#endif
26
#endif
27
27
28
#include <cstdlib>
28
#include <kmainwindow.h>
29
#include <kmainwindow.h>
29
#include <qguardedptr.h> 
30
#include <qguardedptr.h> 
30
31

Return to bug 277665