From: Vadim Zeitlin Date: Sun, 25 Nov 2001 00:51:22 +0000 (+0000) Subject: typo: & was used instead of && X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9a9045a9f3a7d8d669e4170a59f82a84f039c81c typo: & was used instead of && git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12667 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 4c9988de6e..6abcd26d01 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -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 )