blind OS/2 compilation fix in wxSetWorkingDirectory()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47770 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2007-07-28 10:25:56 +00:00
parent 106e875e59
commit 5a1e0e91a1

View File

@ -1646,7 +1646,7 @@ bool wxSetWorkingDirectory(const wxString& d)
#if defined(__OS2__)
if (d[1] == ':')
{
::DosSetDefaultDisk(1 + wxToupper(d[0]) - _T('A'));
::DosSetDefaultDisk(wxToupper(d[0]) - _T('A') + 1);
// do not call DosSetCurrentDir when just changing drive,
// since it requires e.g. "d:." instead of "d:"!
if (d.length() == 2)