[Plib-cvs] CVS: plib/src/pui puInput.cxx,1.20,1.21
Brought to you by:
sjbaker
|
From: Sebastian U. <ud...@us...> - 2002-01-16 18:58:34
|
Update of /cvsroot/plib/plib/src/pui
In directory usw-pr-cvs1:/tmp/cvs-serv17687
Modified Files:
puInput.cxx
Log Message:
John F. Fay: Changed some declarations; Echo text value in int / float values
Index: puInput.cxx
===================================================================
RCS file: /cvsroot/plib/plib/src/pui/puInput.cxx,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- puInput.cxx 2001/12/09 17:39:45 1.20
+++ puInput.cxx 2002/01/16 18:58:30 1.21
@@ -276,8 +276,8 @@
int puInput::checkKey ( int key, int /* updown */ )
{
- extern void puSetPasteBuffer ( char *ch ) ;
- extern char *puGetPasteBuffer () ;
+ extern void puSetPasteBuffer ( char *ch ) ;
+ extern char *puGetPasteBuffer ( void ) ;
if ( ! isAcceptingInput() || ! isActive () || ! isVisible () || ( window != puGetWindow () ) )
return FALSE ;
@@ -394,7 +394,7 @@
break ;
}
- /* setValue ( getStringValue() ) ; */
+ setValue ( getStringValue () ) ;
}
normalize_cursors () ;
|