added missing return values

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13838 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2002-01-26 22:11:02 +00:00
parent 2f056c85d1
commit f63fb56d5e

View File

@@ -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 )