--- bobot++-1.97.orig/source/BotInterp.H
+++ bobot++-1.97/source/BotInterp.H
@@ -52,8 +52,8 @@
class BotInterp {
Bot * bot;
SCM logPort;
- map<int, list<Hook *>, less<int> > hooksMap;
- list<Timer *> timersList;
+ std::map<int, std::list<Hook *>, std::less<int> > hooksMap;
+ std::list<Timer *> timersList;
int counter;
public:
@@ -67,7 +67,7 @@
bool AddHook(int, SCM, SCM);
bool RunHooks(int, String, SCM);
- long AddTimer(int, SCM);
+ SCM AddTimer(int, SCM);
bool DelTimer(SCM);
bool RunTimers(int);