Update of /cvsroot/fxruby/FXRuby/ext/fox/include
In directory usw-pr-cvs1:/tmp/cvs-serv24261
Modified Files:
FXRbGradientBar.h FXRbImageFrame.h FXRbRuler.h FXRbWizard.h
Log Message:
Modified these headers to include the corresponding FOX headers (e.g.
"FXWizard.h" for FXRbWizard.h) if they haven't already been included.
None of these four are listed (yet) in fx.h.
Index: FXRbGradientBar.h
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/include/FXRbGradientBar.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FXRbGradientBar.h 4 Apr 2002 02:10:48 -0000 1.1
--- FXRbGradientBar.h 11 Jul 2002 16:43:03 -0000 1.2
***************
*** 28,31 ****
--- 28,35 ----
#define FXRBGRADIENTBAR_H
+ #ifndef FXGRADIENTBAR_H
+ #include "FXGradientBar.h"
+ #endif
+
class FXRbGradientBar : public FXGradientBar {
FXDECLARE(FXRbGradientBar)
Index: FXRbImageFrame.h
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/include/FXRbImageFrame.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FXRbImageFrame.h 11 Jul 2002 16:03:35 -0000 1.1
--- FXRbImageFrame.h 11 Jul 2002 16:43:03 -0000 1.2
***************
*** 28,31 ****
--- 28,35 ----
#define FXRBIMAGEFRAME_H
+ #ifndef FXIMAGEFRAME_H
+ #include "FXImageFrame.h"
+ #endif
+
class FXRbImageFrame : public FXImageFrame {
FXDECLARE(FXRbImageFrame)
Index: FXRbRuler.h
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/include/FXRbRuler.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FXRbRuler.h 11 Jul 2002 16:03:35 -0000 1.1
--- FXRbRuler.h 11 Jul 2002 16:43:03 -0000 1.2
***************
*** 28,31 ****
--- 28,35 ----
#define FXRBRULER_H
+ #ifndef FXRULER_H
+ #include "FXRuler.h"
+ #endif
+
class FXRbRuler : public FXRuler {
FXDECLARE(FXRbRuler)
***************
*** 46,50 ****
// Destructor
virtual ~FXRbRuler(){
! FXRbUnregisterRubyObject(this);
}
};
--- 50,54 ----
// Destructor
virtual ~FXRbRuler(){
! FXRbUnregisterRubyObj(this);
}
};
Index: FXRbWizard.h
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/include/FXRbWizard.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FXRbWizard.h 11 Jul 2002 16:03:35 -0000 1.1
--- FXRbWizard.h 11 Jul 2002 16:43:03 -0000 1.2
***************
*** 28,31 ****
--- 28,35 ----
#define FXRBWIZARD_H
+ #ifndef FXWIZARD_H
+ #include "FXWizard.h"
+ #endif
+
class FXRbWizard : public FXWizard {
FXDECLARE(FXRbWizard)
***************
*** 50,54 ****
// Destructor
virtual ~FXRbWizard(){
! FXRbUnregisterRubyObject(this);
}
};
--- 54,58 ----
// Destructor
virtual ~FXRbWizard(){
! FXRbUnregisterRubyObj(this);
}
};
|