From 9a9045a9f3a7d8d669e4170a59f82a84f039c81c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 25 Nov 2001 00:51:22 +0000 Subject: [PATCH] typo: & was used instead of && git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12667 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filename.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 ) -- 2.50.0