Update of /cvsroot/fxruby/FXRuby/swig-interfaces
In directory usw-pr-cvs1:/tmp/cvs-serv7727
Modified Files:
Tag: release10
FXApp.i FXScintilla.i
Log Message:
Replaced %readonly and %readwrite directives in SWIG interface files
with new %mutable and %immutable features.
Index: FXApp.i
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/swig-interfaces/FXApp.i,v
retrieving revision 1.38
retrieving revision 1.38.2.1
diff -C2 -d -r1.38 -r1.38.2.1
*** FXApp.i 26 Mar 2002 21:38:50 -0000 1.38
--- FXApp.i 24 Apr 2002 02:55:21 -0000 1.38.2.1
***************
*** 74,78 ****
/// FOX Event
struct FXEvent {
! %readonly
FXuint type; /// Event type
FXuint time; /// Time of last event
--- 74,78 ----
/// FOX Event
struct FXEvent {
! %immutable;
FXuint type; /// Event type
FXuint time; /// Time of last event
***************
*** 97,101 ****
FXbool synthetic; /// True if synthetic expose event
FXDragType target; /// Target drag type being requested
! %readwrite
};
--- 97,101 ----
FXbool synthetic; /// True if synthetic expose event
FXDragType target; /// Target drag type being requested
! %mutable;
};
Index: FXScintilla.i
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/swig-interfaces/FXScintilla.i,v
retrieving revision 1.9
retrieving revision 1.9.2.1
diff -C2 -d -r1.9 -r1.9.2.1
*** FXScintilla.i 19 Mar 2002 23:18:40 -0000 1.9
--- FXScintilla.i 24 Apr 2002 02:55:21 -0000 1.9.2.1
***************
*** 23,30 ****
// Struct definition from Scintilla.h
struct NotifyHeader {
! %readonly
unsigned int idFrom;
unsigned int code;
! %readwrite
};
--- 23,30 ----
// Struct definition from Scintilla.h
struct NotifyHeader {
! %immutable;
unsigned int idFrom;
unsigned int code;
! %mutable;
};
|