Remove (Open)Watcom support.
This compiler is not being developed since several years and almost certainly can't be used to build the current wxWidgets sources anyhow, so remove all support for it, including a lot of extremely ugly workarounds for its bugs with template functions. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76546 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -213,10 +213,6 @@ size_t wxGetAvailableDrives(wxArrayString &paths, wxArrayString &names, wxArrayI
|
||||
|
||||
bool wxIsDriveAvailable(const wxString& dirName)
|
||||
{
|
||||
// FIXME: this method leads to hang up under Watcom for some reason
|
||||
#ifdef __WATCOMC__
|
||||
wxUnusedVar(dirName);
|
||||
#else
|
||||
if ( dirName.length() == 3 && dirName[1u] == wxT(':') )
|
||||
{
|
||||
wxString dirNameLower(dirName.Lower());
|
||||
@@ -227,7 +223,6 @@ bool wxIsDriveAvailable(const wxString& dirName)
|
||||
wxDirExists(dirNameLower));
|
||||
}
|
||||
else
|
||||
#endif
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user