Explicitly return Boolean value as declared

This commit is contained in:
Artur Wieczorek
2019-04-20 19:22:52 +02:00
parent c5cdb66c82
commit 9e71598dd1

View File

@@ -678,7 +678,7 @@ bool wxVariant::GetBool() const
else
{
wxFAIL_MSG(wxT("Could not convert to a bool"));
return 0;
return false;
}
}