Update of /cvsroot/wxlua/wxLua/bindings/wxwidgets
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1208/bindings/wxwidgets
Modified Files:
dialogs.i
Log Message:
removed Set/GetStyle for wx >= 2.7 from wxDir|FileDialog
Index: dialogs.i
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/dialogs.i,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** dialogs.i 1 May 2006 19:36:30 -0000 1.15
--- dialogs.i 14 May 2006 13:11:49 -0000 1.16
***************
*** 157,161 ****
// %override [lua string table] wxFileDialog::GetPaths()
void GetPaths(wxArrayString& paths) const
! long GetStyle() const
wxString GetWildcard() const
void SetDirectory(const wxString& directory)
--- 157,161 ----
// %override [lua string table] wxFileDialog::GetPaths()
void GetPaths(wxArrayString& paths) const
! !%wxchkver27 long GetStyle() const
wxString GetWildcard() const
void SetDirectory(const wxString& directory)
***************
*** 164,168 ****
void SetMessage(const wxString& message)
void SetPath(const wxString& path)
! void SetStyle(long style)
void SetWildcard(const wxString& wildCard)
// int ShowModal() - in wxDialog
--- 164,168 ----
void SetMessage(const wxString& message)
void SetPath(const wxString& path)
! !%wxchkver27 void SetStyle(long style)
void SetWildcard(const wxString& wildCard)
// int ShowModal() - in wxDialog
***************
*** 173,177 ****
%property=Message, read, write
%property=Path, read, write
! %property=Style, read, write
%property=Wildcard, read, write
%endclass
--- 173,177 ----
%property=Message, read, write
%property=Path, read, write
! !%wxchkver27 %property=Style, read, write
%property=Wildcard, read, write
%endclass
***************
*** 192,204 ****
wxString GetPath() const
wxString GetMessage() const
! long GetStyle() const
void SetMessage(const wxString& message)
void SetPath(const wxString& path)
! void SetStyle(long style)
// int ShowModal() - in wxDialog
%property=Message, read, write
%property=Path, read, write
! %property=Style, read, write
%endclass
--- 192,204 ----
wxString GetPath() const
wxString GetMessage() const
! !%wxchkver27 long GetStyle() const
void SetMessage(const wxString& message)
void SetPath(const wxString& path)
! !%wxchkver27 void SetStyle(long style)
// int ShowModal() - in wxDialog
%property=Message, read, write
%property=Path, read, write
! !%wxchkver27 %property=Style, read, write
%endclass
|