Use wxString::t_str(), not fn_str(), with Windows API functions.

fn_str() is supposed to be used with the CRT functions taking file names only,
not Windows API functions that always take LPCTSTR with all compilers/CRT
versions.

Closes #14433.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71891 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-06-30 16:33:32 +00:00
parent 26cdd42d2c
commit 9c505a36e7
2 changed files with 4 additions and 8 deletions

View File

@@ -1537,7 +1537,7 @@ bool wxSetWorkingDirectory(const wxString& d)
// No equivalent in WinCE
wxUnusedVar(d);
#else
success = (SetCurrentDirectory(d.fn_str()) != 0);
success = (SetCurrentDirectory(d.t_str()) != 0);
#endif
#else
// Must change drive, too.
@@ -1765,7 +1765,7 @@ static bool wxCheckWin32Permission(const wxString& path, DWORD access)
// quoting the MSDN: "To obtain a handle to a directory, call the
// CreateFile function with the FILE_FLAG_BACKUP_SEMANTICS flag", but this
// doesn't work under Win9x/ME but then it's not needed there anyhow
const DWORD dwAttr = ::GetFileAttributes(path.fn_str());
const DWORD dwAttr = ::GetFileAttributes(path.t_str());
if ( dwAttr == INVALID_FILE_ATTRIBUTES )
{
// file probably doesn't exist at all