[Plib-cvs] plib/src/pui puValue.cxx,1.25,1.26
Brought to you by:
sjbaker
From: M?rten Str?m. <str...@us...> - 2003-09-09 19:45:19
|
Update of /cvsroot/plib/plib/src/pui In directory sc8-pr-cvs1:/tmp/cvs-serv28860 Modified Files: puValue.cxx Log Message: Bugfix reported by Frederic Jardon Index: puValue.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/pui/puValue.cxx,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- puValue.cxx 12 Jul 2003 00:45:58 -0000 1.25 +++ puValue.cxx 9 Sep 2003 19:45:13 -0000 1.26 @@ -120,7 +120,7 @@ Do not modify the string value unless necessary */ if ( *res_bool != ( strcmp ( string, "0" ) != 0 ) ) - sprintf ( string, "%d", *res_bool ? "1" : "0" ) ; + sprintf ( string, "%d", *res_bool ? 1 : 0 ) ; puPostRefresh () ; } |