typo: & was used instead of &&

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12667 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-11-25 00:51:22 +00:00
parent d2d14464a5
commit 9a9045a9f3

View File

@@ -504,8 +504,7 @@ bool wxFileName::SameAs( const wxFileName &filepath, wxPathFormat format)
bool wxFileName::IsCaseSensitive( wxPathFormat format )
{
// only DOS and OpenVMS filenames are case-sensitive
return ( GetFormat(format) != wxPATH_DOS &
GetFormat(format) != wxPATH_VMS );
return GetFormat(format) != wxPATH_DOS && GetFormat(format) != wxPATH_VMS;
}
bool wxFileName::IsRelative( wxPathFormat format )