]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't return "false" when a pointer is needed.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 13 Oct 2010 22:10:28 +0000 (22:10 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 13 Oct 2010 22:10:28 +0000 (22:10 +0000)
Return NULL and not false from wxFileTranslationsLoader::
GetAvailableTranslations().

This is, of course, more correct and also fixes a compilation problem with
Borland, see #12558.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65796 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/translation.cpp

index ee4328a72c7a587e7020f9b008628199085b8a01..90f02759fc89481e9bdc1d99284baf3619b7f6ba 100644 (file)
@@ -1790,7 +1790,7 @@ wxMsgCatalog *wxResourceTranslationsLoader::LoadCatalog(const wxString& domain,
                              resname,
                              GetResourceType(),
                              GetModule()) )
                              resname,
                              GetResourceType(),
                              GetModule()) )
-        return false;
+        return NULL;
 
     wxLogTrace(TRACE_I18N,
                "Using catalog from Windows resource \"%s\".", resname);
 
     wxLogTrace(TRACE_I18N,
                "Using catalog from Windows resource \"%s\".", resname);