Update of /cvsroot/cpptool/rfta/bug
In directory sc8-pr-cvs1:/tmp/cvs-serv17504/bug
Modified Files:
List.txt
Log Message:
* added cosntructor bug parse
Index: List.txt
===================================================================
RCS file: /cvsroot/cpptool/rfta/bug/List.txt,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** List.txt 3 May 2003 22:22:39 -0000 1.6
--- List.txt 4 May 2003 07:35:06 -0000 1.7
***************
*** 42,46 ****
WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
=> this is interpreter as a macro declaration declaration & something ?
!
--- 42,70 ----
WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
=> this is interpreter as a macro declaration declaration & something ?
! ---
! bad constructor handling (wxwindows/dirctrlg.h)
! wxGenericDirCtrl(wxWindow *parent, const wxWindowID id = -1,
! const wxString &dir = wxDirDialogDefaultFolderStr,
! const wxPoint& pos = wxDefaultPosition,
! const wxSize& size = wxDefaultSize,
! long style = wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
! const wxString& filter = wxEmptyString,
! int defaultFilter = 0,
! const wxString& name = wxTreeCtrlNameStr )
! {
! Init();
! Create(parent, id, dir, pos, size, style, filter, defaultFilter, name);
! }
!
! bool Create(wxWindow *parent, const wxWindowID id = -1,
! const wxString &dir = wxDirDialogDefaultFolderStr,
! const wxPoint& pos = wxDefaultPosition,
! const wxSize& size = wxDefaultSize,
! long style = wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
! const wxString& filter = wxEmptyString,
! int defaultFilter = 0,
! const wxString& name = wxTreeCtrlNameStr );
! => parse up to next ';' instead of '{'
! ---
|