Update of /cvsroot/fxruby/FXRuby/ext/fox/include
In directory usw-pr-cvs1:/tmp/cvs-serv17489/ext/fox/include
Modified Files:
FXRbCursor.h
Log Message:
Added default argument values for FXCursor hotspot.
Index: FXRbCursor.h
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/include/FXRbCursor.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FXRbCursor.h 12 Jul 2001 19:44:17 -0000 1.1
--- FXRbCursor.h 11 Jul 2002 17:44:58 -0000 1.2
***************
*** 56,60 ****
/// Make cursor from source and mask; cursor size should at most 32x32 for portability!
! FXRbCursor(FXApp* a,const void* src,const void* msk,FXint w=32,FXint h=32,FXint hx=-1,FXint hy=-1) : FXCursor(a,src,msk,w,h,hx,hy){
FXRbRegisterAppSensitiveObject(this);
}
--- 56,60 ----
/// Make cursor from source and mask; cursor size should at most 32x32 for portability!
! FXRbCursor(FXApp* a,const void* src,const void* msk,FXint w=32,FXint h=32,FXint hx=0,FXint hy=0) : FXCursor(a,src,msk,w,h,hx,hy){
FXRbRegisterAppSensitiveObject(this);
}
|