'wxCHANGE_DIR' was not declared in this scope

http://www.digipedia.pl/usenet/thread/11582/9218/

‘wxCHANGE_DIR’  was renamed to wxFD_CHANGE_DIR when WXWIN_COMPATIBILITY_2_6=0 which

is the default for 2.9 builds now (cvs head is 2.9)


the related values are defined in C:\wxWidgets-2.9.2\include\wx\filedlg.h.


#if WXWIN_COMPATIBILITY_2_6
enum
{
    wxOPEN              = wxFD_OPEN,
    wxSAVE              = wxFD_SAVE,
    wxOVERWRITE_PROMPT  = wxFD_OVERWRITE_PROMPT,
    wxFILE_MUST_EXIST   = wxFD_FILE_MUST_EXIST,
    wxMULTIPLE          = wxFD_MULTIPLE,
    wxCHANGE_DIR        = wxFD_CHANGE_DIR
};
#endif

你可能感兴趣的:(cvs)