bobot++ (1:1.97-10.4) source/BotInterp.H

Summary

 source/BotInterp.H |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

    
download this patch

Patch contents

--- 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);