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:
@@ -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 )
|
||||
|
Reference in New Issue
Block a user