Compilation fix for GetAvailableTranslations().

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64607 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2010-06-17 13:04:25 +00:00
parent 2ab514cad4
commit 4c83615f07

View File

@ -1294,7 +1294,7 @@ void wxTranslations::SetLanguage(const wxString& lang)
wxArrayString wxTranslations::GetAvailableTranslations(const wxString& domain) const
{
wxCHECK_MSG( m_loader, false, "loader can't be NULL" );
wxCHECK_MSG( m_loader, wxArrayString(), "loader can't be NULL" );
return m_loader->GetAvailableTranslations(domain);
}