Update of /cvsroot/fxruby/FXRuby/swig-interfaces
In directory usw-pr-cvs1:/tmp/cvs-serv9872
Modified Files:
Tag: release10
FXScintilla.i
Log Message:
Replaced %readonly and %readwrite directives with %immutable and
%mutable.
Index: FXScintilla.i
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/swig-interfaces/FXScintilla.i,v
retrieving revision 1.9.2.1
retrieving revision 1.9.2.2
diff -C2 -d -r1.9.2.1 -r1.9.2.2
*** FXScintilla.i 24 Apr 2002 02:55:21 -0000 1.9.2.1
--- FXScintilla.i 24 Apr 2002 03:04:43 -0000 1.9.2.2
***************
*** 31,35 ****
// Struct definition from Scintilla.h
struct SCNotification {
! %readonly
struct NotifyHeader nmhdr;
int position; // SCN_STYLENEEDED, SCN_MODIFIED, SCN_DWELLSTART, SCN_DWELLEND
--- 31,35 ----
// Struct definition from Scintilla.h
struct SCNotification {
! %immutable;
struct NotifyHeader nmhdr;
int position; // SCN_STYLENEEDED, SCN_MODIFIED, SCN_DWELLSTART, SCN_DWELLEND
***************
*** 60,64 ****
int x; // SCN_DWELLSTART, SCN_DWELLEND
int y; // SCN_DWELLSTART, SCN_DWELLEND
! %readwrite
%addmethods {
VALUE wParam() const {
--- 60,64 ----
int x; // SCN_DWELLSTART, SCN_DWELLEND
int y; // SCN_DWELLSTART, SCN_DWELLEND
! %mutable;
%addmethods {
VALUE wParam() const {
|