[Fxruby-commits] CVS: FXRuby/ext/fox core_wrap.cpp,1.62.2.24,1.62.2.25 dialogs_wrap.cpp,1.34.2.20,1.
Status: Inactive
Brought to you by:
lyle
|
From: Lyle J. <ly...@us...> - 2002-07-08 18:44:01
|
Update of /cvsroot/fxruby/FXRuby/ext/fox
In directory usw-pr-cvs1:/tmp/cvs-serv14447/ext/fox
Modified Files:
Tag: release10
core_wrap.cpp dialogs_wrap.cpp icons_wrap.cpp image_wrap.cpp
layout_wrap.cpp mdi_wrap.cpp opengl_wrap.cpp
scintilla_wrap.cpp ui_wrap.cpp
Log Message:
Started trying to include the FOX header files directly; first cut
was with FXRegion.
Index: core_wrap.cpp
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/core_wrap.cpp,v
retrieving revision 1.62.2.24
retrieving revision 1.62.2.25
diff -C2 -d -r1.62.2.24 -r1.62.2.25
*** core_wrap.cpp 8 Jul 2002 14:28:25 -0000 1.62.2.24
--- core_wrap.cpp 8 Jul 2002 18:42:09 -0000 1.62.2.25
***************
*** 1,5 ****
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020706-1721
*
* This file is not intended to be easily readable and contains a number of
--- 1,5 ----
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020708-1058
*
* This file is not intended to be easily readable and contains a number of
***************
*** 742,764 ****
static void free_FXRbDrawable(FXRbDrawable *);
FXRectangle FXRegion_bounds(FXRegion const *self){
! FXRectangle r;
! self->bounds(r);
! return r;
! }
! FXRegion FXRegion___add__(FXRegion *self,FXRegion const &other){
! return (*self) + other;
! }
! FXRegion FXRegion___mul__(FXRegion *self,FXRegion const &other){
! return (*self) * other;
! }
! FXRegion FXRegion___sub__(FXRegion *self,FXRegion const &other){
! return (*self) - other;
! }
! FXRegion FXRegion___xor__(FXRegion *self,FXRegion const &other){
! return (*self)^other;
! }
! FXbool FXRegion___eq__(FXRegion *self,FXRegion const &other){
! return (*self) == other;
! }
swig_class cFXRegion;
--- 742,764 ----
static void free_FXRbDrawable(FXRbDrawable *);
FXRectangle FXRegion_bounds(FXRegion const *self){
! FXRectangle r;
! self->bounds(r);
! return r;
! }
! FXRegion FXRegion_operator_a___(FXRegion const *self,FXRegion const &other){
! return (*self) + other;
! }
! FXRegion FXRegion_operator_m___(FXRegion const *self,FXRegion const &other){
! return (*self) * other;
! }
! FXRegion FXRegion_operator_s___(FXRegion const *self,FXRegion const &other){
! return (*self) - other;
! }
! FXRegion FXRegion_operator_x___(FXRegion const *self,FXRegion const &other){
! return (*self)^other;
! }
! FXbool FXRegion_operator_ee___(FXRegion const *self,FXRegion const &other){
! return (*self) == other;
! }
swig_class cFXRegion;
***************
*** 10109,10131 ****
static VALUE
- _wrap_FXRegion_bounds(int argc, VALUE *argv, VALUE self) {
- FXRegion *arg1 ;
- FXRectangle result;
- VALUE vresult = Qnil;
-
- if ((argc < 0) || (argc > 0))
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRegion, 1);
- result = FXRegion_bounds((FXRegion const *)arg1);
-
- {
- FXRectangle* resultptr = new FXRectangle(result);
- vresult = FXRbGetRubyObj(resultptr, "FXRectangle *");
- }
- return vresult;
- }
-
-
- static VALUE
_wrap_FXRegion_offset(int argc, VALUE *argv, VALUE self) {
FXRegion *arg1 ;
--- 10109,10112 ----
***************
*** 10148,10153 ****
static VALUE
! _wrap_FXRegion___add__(int argc, VALUE *argv, VALUE self) {
FXRegion *arg1 ;
FXRegion *arg2 ;
--- 10129,10157 ----
+ static void
+ free_FXRegion(FXRegion *arg1) {
+ delete arg1;
+ }
static VALUE
! _wrap_FXRegion_bounds(int argc, VALUE *argv, VALUE self) {
! FXRegion *arg1 ;
! FXRectangle result;
! VALUE vresult = Qnil;
!
! if ((argc < 0) || (argc > 0))
! rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
! SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRegion, 1);
! result = FXRegion_bounds((FXRegion const *)arg1);
!
! {
! FXRectangle* resultptr = new FXRectangle(result);
! vresult = FXRbGetRubyObj(resultptr, "FXRectangle *");
! }
! return vresult;
! }
!
!
! static VALUE
! _wrap_FXRegion___add____SWIG_1(int argc, VALUE *argv, VALUE self) {
FXRegion *arg1 ;
FXRegion *arg2 ;
***************
*** 10159,10163 ****
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRegion, 1);
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1);
! result = FXRegion___add__(arg1,(FXRegion const &)*arg2);
{
--- 10163,10167 ----
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRegion, 1);
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1);
! result = FXRegion_operator_a___((FXRegion const *)arg1,(FXRegion const &)*arg2);
{
***************
*** 10169,10174 ****
static VALUE
! _wrap_FXRegion___mul__(int argc, VALUE *argv, VALUE self) {
FXRegion *arg1 ;
FXRegion *arg2 ;
--- 10173,10211 ----
+ static VALUE _wrap_FXRegion___add__(int nargs, VALUE *args, VALUE self) {
+ int argc;
+ VALUE argv[3];
+ int ii;
+
+ argc = nargs + 1;
+ argv[0] = self;
+ for (ii = 1; (ii < argc) && (ii < 2); ii++) {
+ argv[ii] = args[ii-1];
+ }
+ if ((argc >= 2) && (argc <= 2)) {
+ int _m = 1;
+ int _v = 1;
+ {
+ void *ptr;
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0;
+ }
+ _m &= _v;
+ {
+ void *ptr;
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0;
+ }
+ _m &= _v;
+ if (_m) {
+ return _wrap_FXRegion___add____SWIG_1(nargs, args, self);
+ }
+ }
+
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXRegion___add__'");
+ return Qnil;
+ }
+
+
static VALUE
! _wrap_FXRegion___mul____SWIG_1(int argc, VALUE *argv, VALUE self) {
FXRegion *arg1 ;
FXRegion *arg2 ;
***************
*** 10180,10184 ****
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRegion, 1);
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1);
! result = FXRegion___mul__(arg1,(FXRegion const &)*arg2);
{
--- 10217,10221 ----
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRegion, 1);
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1);
! result = FXRegion_operator_m___((FXRegion const *)arg1,(FXRegion const &)*arg2);
{
***************
*** 10190,10195 ****
static VALUE
! _wrap_FXRegion___sub__(int argc, VALUE *argv, VALUE self) {
FXRegion *arg1 ;
FXRegion *arg2 ;
--- 10227,10265 ----
+ static VALUE _wrap_FXRegion___mul__(int nargs, VALUE *args, VALUE self) {
+ int argc;
+ VALUE argv[3];
+ int ii;
+
+ argc = nargs + 1;
+ argv[0] = self;
+ for (ii = 1; (ii < argc) && (ii < 2); ii++) {
+ argv[ii] = args[ii-1];
+ }
+ if ((argc >= 2) && (argc <= 2)) {
+ int _m = 1;
+ int _v = 1;
+ {
+ void *ptr;
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0;
+ }
+ _m &= _v;
+ {
+ void *ptr;
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0;
+ }
+ _m &= _v;
+ if (_m) {
+ return _wrap_FXRegion___mul____SWIG_1(nargs, args, self);
+ }
+ }
+
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXRegion___mul__'");
+ return Qnil;
+ }
+
+
static VALUE
! _wrap_FXRegion___sub____SWIG_1(int argc, VALUE *argv, VALUE self) {
FXRegion *arg1 ;
FXRegion *arg2 ;
***************
*** 10201,10205 ****
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRegion, 1);
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1);
! result = FXRegion___sub__(arg1,(FXRegion const &)*arg2);
{
--- 10271,10275 ----
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRegion, 1);
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1);
! result = FXRegion_operator_s___((FXRegion const *)arg1,(FXRegion const &)*arg2);
{
***************
*** 10211,10216 ****
static VALUE
! _wrap_FXRegion___xor__(int argc, VALUE *argv, VALUE self) {
FXRegion *arg1 ;
FXRegion *arg2 ;
--- 10281,10319 ----
+ static VALUE _wrap_FXRegion___sub__(int nargs, VALUE *args, VALUE self) {
+ int argc;
+ VALUE argv[3];
+ int ii;
+
+ argc = nargs + 1;
+ argv[0] = self;
+ for (ii = 1; (ii < argc) && (ii < 2); ii++) {
+ argv[ii] = args[ii-1];
+ }
+ if ((argc >= 2) && (argc <= 2)) {
+ int _m = 1;
+ int _v = 1;
+ {
+ void *ptr;
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0;
+ }
+ _m &= _v;
+ {
+ void *ptr;
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0;
+ }
+ _m &= _v;
+ if (_m) {
+ return _wrap_FXRegion___sub____SWIG_1(nargs, args, self);
+ }
+ }
+
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXRegion___sub__'");
+ return Qnil;
+ }
+
+
static VALUE
! _wrap_FXRegion___xor____SWIG_1(int argc, VALUE *argv, VALUE self) {
FXRegion *arg1 ;
FXRegion *arg2 ;
***************
*** 10222,10226 ****
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRegion, 1);
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1);
! result = FXRegion___xor__(arg1,(FXRegion const &)*arg2);
{
--- 10325,10329 ----
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRegion, 1);
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1);
! result = FXRegion_operator_x___((FXRegion const *)arg1,(FXRegion const &)*arg2);
{
***************
*** 10232,10237 ****
static VALUE
! _wrap_FXRegion___eq__(int argc, VALUE *argv, VALUE self) {
FXRegion *arg1 ;
FXRegion *arg2 ;
--- 10335,10373 ----
+ static VALUE _wrap_FXRegion___xor__(int nargs, VALUE *args, VALUE self) {
+ int argc;
+ VALUE argv[3];
+ int ii;
+
+ argc = nargs + 1;
+ argv[0] = self;
+ for (ii = 1; (ii < argc) && (ii < 2); ii++) {
+ argv[ii] = args[ii-1];
+ }
+ if ((argc >= 2) && (argc <= 2)) {
+ int _m = 1;
+ int _v = 1;
+ {
+ void *ptr;
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0;
+ }
+ _m &= _v;
+ {
+ void *ptr;
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0;
+ }
+ _m &= _v;
+ if (_m) {
+ return _wrap_FXRegion___xor____SWIG_1(nargs, args, self);
+ }
+ }
+
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXRegion___xor__'");
+ return Qnil;
+ }
+
+
static VALUE
! _wrap_FXRegion___eq____SWIG_1(int argc, VALUE *argv, VALUE self) {
FXRegion *arg1 ;
FXRegion *arg2 ;
***************
*** 10243,10247 ****
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRegion, 1);
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1);
! result = (FXbool)FXRegion___eq__(arg1,(FXRegion const &)*arg2);
vresult = result ? Qtrue : Qfalse;
--- 10379,10383 ----
SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXRegion, 1);
SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1);
! result = (FXbool)FXRegion_operator_ee___((FXRegion const *)arg1,(FXRegion const &)*arg2);
vresult = result ? Qtrue : Qfalse;
***************
*** 10250,10257 ****
! static void
! free_FXRegion(FXRegion *arg1) {
! delete arg1;
}
static VALUE
_wrap_FXSegment_allocate(int argc, VALUE *argv, VALUE self) {
--- 10386,10422 ----
! static VALUE _wrap_FXRegion___eq__(int nargs, VALUE *args, VALUE self) {
! int argc;
! VALUE argv[3];
! int ii;
!
! argc = nargs + 1;
! argv[0] = self;
! for (ii = 1; (ii < argc) && (ii < 2); ii++) {
! argv[ii] = args[ii-1];
! }
! if ((argc >= 2) && (argc <= 2)) {
! int _m = 1;
! int _v = 1;
! {
! void *ptr;
! _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0;
! }
! _m &= _v;
! {
! void *ptr;
! _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0;
! }
! _m &= _v;
! if (_m) {
! return _wrap_FXRegion___eq____SWIG_1(nargs, args, self);
! }
! }
!
! rb_raise(rb_eArgError, "No matching function for overloaded 'FXRegion___eq__'");
! return Qnil;
}
+
+
static VALUE
_wrap_FXSegment_allocate(int argc, VALUE *argv, VALUE self) {
***************
*** 19930,19935 ****
rb_define_method(cFXRegion.klass, "empty?", VALUEFUNC(_wrap_FXRegion_emptyq___), -1);
rb_define_method(cFXRegion.klass, "contains", VALUEFUNC(_wrap_FXRegion_contains), -1);
- rb_define_method(cFXRegion.klass, "bounds", VALUEFUNC(_wrap_FXRegion_bounds), -1);
rb_define_method(cFXRegion.klass, "offset", VALUEFUNC(_wrap_FXRegion_offset), -1);
rb_define_method(cFXRegion.klass, "+", VALUEFUNC(_wrap_FXRegion___add__), -1);
rb_define_method(cFXRegion.klass, "*", VALUEFUNC(_wrap_FXRegion___mul__), -1);
--- 20095,20100 ----
rb_define_method(cFXRegion.klass, "empty?", VALUEFUNC(_wrap_FXRegion_emptyq___), -1);
rb_define_method(cFXRegion.klass, "contains", VALUEFUNC(_wrap_FXRegion_contains), -1);
rb_define_method(cFXRegion.klass, "offset", VALUEFUNC(_wrap_FXRegion_offset), -1);
+ rb_define_method(cFXRegion.klass, "bounds", VALUEFUNC(_wrap_FXRegion_bounds), -1);
rb_define_method(cFXRegion.klass, "+", VALUEFUNC(_wrap_FXRegion___add__), -1);
rb_define_method(cFXRegion.klass, "*", VALUEFUNC(_wrap_FXRegion___mul__), -1);
Index: dialogs_wrap.cpp
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/dialogs_wrap.cpp,v
retrieving revision 1.34.2.20
retrieving revision 1.34.2.21
diff -C2 -d -r1.34.2.20 -r1.34.2.21
*** dialogs_wrap.cpp 8 Jul 2002 13:27:24 -0000 1.34.2.20
--- dialogs_wrap.cpp 8 Jul 2002 18:42:18 -0000 1.34.2.21
***************
*** 1,5 ****
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020706-1721
*
* This file is not intended to be easily readable and contains a number of
--- 1,5 ----
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020708-1058
*
* This file is not intended to be easily readable and contains a number of
Index: icons_wrap.cpp
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/icons_wrap.cpp,v
retrieving revision 1.37.2.21
retrieving revision 1.37.2.22
diff -C2 -d -r1.37.2.21 -r1.37.2.22
*** icons_wrap.cpp 8 Jul 2002 13:27:25 -0000 1.37.2.21
--- icons_wrap.cpp 8 Jul 2002 18:42:19 -0000 1.37.2.22
***************
*** 1,5 ****
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020706-1721
*
* This file is not intended to be easily readable and contains a number of
--- 1,5 ----
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020708-1058
*
* This file is not intended to be easily readable and contains a number of
Index: image_wrap.cpp
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/image_wrap.cpp,v
retrieving revision 1.39.2.21
retrieving revision 1.39.2.22
diff -C2 -d -r1.39.2.21 -r1.39.2.22
*** image_wrap.cpp 8 Jul 2002 13:27:25 -0000 1.39.2.21
--- image_wrap.cpp 8 Jul 2002 18:42:19 -0000 1.39.2.22
***************
*** 1,5 ****
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020706-1721
*
* This file is not intended to be easily readable and contains a number of
--- 1,5 ----
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020708-1058
*
* This file is not intended to be easily readable and contains a number of
Index: layout_wrap.cpp
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/layout_wrap.cpp,v
retrieving revision 1.8.2.20
retrieving revision 1.8.2.21
diff -C2 -d -r1.8.2.20 -r1.8.2.21
*** layout_wrap.cpp 8 Jul 2002 13:27:26 -0000 1.8.2.20
--- layout_wrap.cpp 8 Jul 2002 18:42:20 -0000 1.8.2.21
***************
*** 1,5 ****
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020706-1721
*
* This file is not intended to be easily readable and contains a number of
--- 1,5 ----
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020708-1058
*
* This file is not intended to be easily readable and contains a number of
Index: mdi_wrap.cpp
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/mdi_wrap.cpp,v
retrieving revision 1.36.2.20
retrieving revision 1.36.2.21
diff -C2 -d -r1.36.2.20 -r1.36.2.21
*** mdi_wrap.cpp 8 Jul 2002 13:27:26 -0000 1.36.2.20
--- mdi_wrap.cpp 8 Jul 2002 18:42:20 -0000 1.36.2.21
***************
*** 1,5 ****
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020706-1721
*
* This file is not intended to be easily readable and contains a number of
--- 1,5 ----
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020708-1058
*
* This file is not intended to be easily readable and contains a number of
Index: opengl_wrap.cpp
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/opengl_wrap.cpp,v
retrieving revision 1.41.2.22
retrieving revision 1.41.2.23
diff -C2 -d -r1.41.2.22 -r1.41.2.23
*** opengl_wrap.cpp 8 Jul 2002 14:28:29 -0000 1.41.2.22
--- opengl_wrap.cpp 8 Jul 2002 18:42:21 -0000 1.41.2.23
***************
*** 1,5 ****
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020706-1721
*
* This file is not intended to be easily readable and contains a number of
--- 1,5 ----
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020708-1058
*
* This file is not intended to be easily readable and contains a number of
Index: scintilla_wrap.cpp
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/scintilla_wrap.cpp,v
retrieving revision 1.16.2.15
retrieving revision 1.16.2.16
diff -C2 -d -r1.16.2.15 -r1.16.2.16
*** scintilla_wrap.cpp 8 Jul 2002 13:27:27 -0000 1.16.2.15
--- scintilla_wrap.cpp 8 Jul 2002 18:42:21 -0000 1.16.2.16
***************
*** 1,5 ****
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020706-1721
*
* This file is not intended to be easily readable and contains a number of
--- 1,5 ----
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020708-1058
*
* This file is not intended to be easily readable and contains a number of
Index: ui_wrap.cpp
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/ext/fox/ui_wrap.cpp,v
retrieving revision 1.9.2.21
retrieving revision 1.9.2.22
diff -C2 -d -r1.9.2.21 -r1.9.2.22
*** ui_wrap.cpp 8 Jul 2002 14:28:30 -0000 1.9.2.21
--- ui_wrap.cpp 8 Jul 2002 18:42:22 -0000 1.9.2.22
***************
*** 1,5 ****
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020706-1721
*
* This file is not intended to be easily readable and contains a number of
--- 1,5 ----
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
! * Version 1.3.14u-20020708-1058
*
* This file is not intended to be easily readable and contains a number of
|