From: Dejan L. <le...@us...> - 2004-06-07 22:01:36
|
Update of /cvsroot/rtk/rtk/rtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26649 Modified Files: IO.h Log Message: Small fix in SetMutex() . Index: IO.h =================================================================== RCS file: /cvsroot/rtk/rtk/rtk/IO.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** IO.h 7 Jun 2004 18:01:34 -0000 1.4 --- IO.h 7 Jun 2004 22:00:57 -0000 1.5 *************** *** 115,119 **** /** Sets Mutex object for IO */ ! void SetMutex(const Mutex& arg_mutex) { _mutex = arg_mutex; } /** Gets Mutex object from IO */ --- 115,119 ---- /** Sets Mutex object for IO */ ! void SetMutex(const Mutex* arg_mutex) { _mutex = arg_mutex; } /** Gets Mutex object from IO */ |