Update of /cvsroot/fxruby/FXRuby/ext/fox/include
In directory usw-pr-cvs1:/tmp/cvs-serv23675
Modified Files:
FXRbMDIChildVirtuals.h
Log Message:
Corrected the return types for FXMDIChild virtual member functions
minimize(), maximize() and restore(); also added override for close().
Index: FXRbMDIChildVirtuals.h
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/include/FXRbMDIChildVirtuals.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FXRbMDIChildVirtuals.h 12 Jul 2001 19:44:18 -0000 1.1
--- FXRbMDIChildVirtuals.h 11 Jul 2002 16:41:33 -0000 1.2
***************
*** 1,18 ****
public:
// Calls the base class version of minimize()
! void _minimize(FXbool notify=FALSE);
// Overrides the base class version of minimize()
! virtual void minimize(FXbool notify=FALSE);
// Calls the base class version of maximize()
! void _maximize(FXbool notify=FALSE);
// Overrides the base class version of maximize()
! virtual void maximize(FXbool notify=FALSE);
// Calls the base class version of restore()
! void _restore(FXbool notify=FALSE);
// Overrides the base class version of restore()
! virtual void restore(FXbool notify=FALSE);
--- 1,24 ----
public:
// Calls the base class version of minimize()
! FXbool _minimize(FXbool notify=FALSE);
// Overrides the base class version of minimize()
! virtual FXbool minimize(FXbool notify=FALSE);
// Calls the base class version of maximize()
! FXbool _maximize(FXbool notify=FALSE);
// Overrides the base class version of maximize()
! virtual FXbool maximize(FXbool notify=FALSE);
// Calls the base class version of restore()
! FXbool _restore(FXbool notify=FALSE);
// Overrides the base class version of restore()
! virtual FXbool restore(FXbool notify=FALSE);
!
! // Calls the base class version of close()
! FXbool _close(FXbool notify=FALSE);
!
! // Overrides the base class version of close()
! virtual FXbool close(FXbool notify=FALSE);
|