clean up release unused variable warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33658 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton
2005-04-16 12:20:57 +00:00
parent 17fce800d5
commit c02af65369

View File

@@ -242,10 +242,9 @@ wxString wxFileTypeImpl::GetCommand(const wxString& verb) const
if(verb == wxT("open"))
{
ICMapEntry entry;
OSStatus status = ICGetMapEntry( (ICInstance) m_manager->m_hIC,
ICGetMapEntry( (ICInstance) m_manager->m_hIC,
(Handle) m_manager->m_hDatabase,
m_lIndex, &entry);
wxASSERT( status == noErr );
//Technote 1002 is a godsend in launching apps :)
//The entry in the mimetype database only contains the app
@@ -269,10 +268,9 @@ bool wxFileTypeImpl::GetExtensions(wxArrayString& extensions)
return false;
ICMapEntry entry;
OSStatus status = ICGetMapEntry( (ICInstance) m_manager->m_hIC,
ICGetMapEntry( (ICInstance) m_manager->m_hIC,
(Handle) m_manager->m_hDatabase,
m_lIndex, &entry);
wxASSERT( status == noErr );
//entry has period in it
wxString sCurrentExtension = wxMacMakeStringFromPascal(entry.extension);
@@ -286,10 +284,9 @@ bool wxFileTypeImpl::GetMimeType(wxString *mimeType) const
return false;
ICMapEntry entry;
OSStatus status = ICGetMapEntry( (ICInstance) m_manager->m_hIC,
ICGetMapEntry( (ICInstance) m_manager->m_hIC,
(Handle) m_manager->m_hDatabase,
m_lIndex, &entry);
wxASSERT( status == noErr );
*mimeType = wxMacMakeStringFromPascal(entry.MIMEType);
return true;
@@ -321,10 +318,9 @@ bool wxFileTypeImpl::GetDescription(wxString *desc) const
return false;
ICMapEntry entry;
OSStatus status = ICGetMapEntry( (ICInstance) m_manager->m_hIC,
ICGetMapEntry( (ICInstance) m_manager->m_hIC,
(Handle) m_manager->m_hDatabase,
m_lIndex, &entry);
wxASSERT( status == noErr );
*desc = wxString((char*)entry.entryName, wxConvLocal);
return true;