File spirits-1.0-compilation_fixes.patch of Package spirits
--- src/ma_allegro/ma_classfactory.h
+++ src/ma_allegro/ma_classfactory.h
@@ -32,7 +32,7 @@
PUBLIC_CLASS_ID;
bool isInstanceOf(long class_id);
long getClassID(void);
- virtual ~TMAObject()=0L;
+ virtual ~TMAObject()=0;
};
typedef TMAObject *PMAObject;
--- src/ma_allegro/utils/utils.h
+++ src/ma_allegro/utils/utils.h
@@ -131,7 +131,7 @@
// 0 -> o1=o2
// 1 -> o1>o2
//
- virtual int compare(TMAObject& o1,TMAObject& o2)=0L;
+ virtual int compare(TMAObject& o1,TMAObject& o2)=0;
};
// *****************************
@@ -201,7 +201,7 @@
unsigned long get4BWord(FILE*);
TMAString getString(FILE*,int size);
- virtual bool readFromFile(FILE*)=0L;
+ virtual bool readFromFile(FILE*)=0;
};
// ******************