From f63fb56d5ee3bf21205d1c2038099caf63c19910 Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot Date: Sat, 26 Jan 2002 22:11:02 +0000 Subject: [PATCH] added missing return values git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13838 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filename.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/common/filename.cpp b/src/common/filename.cpp index ffffe53275..7dc9c0a196 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -1742,8 +1742,9 @@ bool wxFileName::MacSetDefaultTypeAndCreator() if ( wxFileName::MacFindDefaultTypeAndCreator(GetExt() , &type , &creator ) ) { - MacSetTypeAndCreator( type , creator ) ; - } + return MacSetTypeAndCreator( type , creator ) ; + } + return false; } bool wxFileName::MacFindDefaultTypeAndCreator( const wxString& ext , wxUint32 *type , wxUint32 *creator ) -- 2.50.0