From 2be85c1b1b8db11cd0161ef06a88b25d95b0f5e6 Mon Sep 17 00:00:00 2001
From: ehofman <ehofman>
Date: Thu, 27 Nov 2003 14:34:37 +0000
Subject: [PATCH] gcc 2.95 and 3.0 requite handleTimer to be public

---
 src/Scripting/NasalSys.hxx | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/Scripting/NasalSys.hxx b/src/Scripting/NasalSys.hxx
index 0de8fcd36..36473ed36 100644
--- a/src/Scripting/NasalSys.hxx
+++ b/src/Scripting/NasalSys.hxx
@@ -35,13 +35,15 @@ private:
     void hashset(naRef hash, const char* key, naRef val);
     void logError();
     naRef parse(const char* filename, const char* buf, int len);
-    void handleTimer(NasalTimer* t);
 
     naContext _context;
     naRef _globals;
     naRef _timerHash;
 
     int _nextTimerHashKey;
+
+public:
+         void handleTimer(NasalTimer* t);
 };
 
 #endif // __NASALSYS_HXX