Remove use of nullptr. That is a C++11-ism that is not supported by many toolchains.

This commit is contained in:
Gregory Nutt 2016-10-06 10:22:07 -06:00
parent 37ef33883b
commit 1a71720006

View File

@ -261,7 +261,7 @@ namespace NXWidgets
{
if (index < 0 || index >= m_items.size())
{
return nullptr;
return (const CListDataItem *)0;
}
else
{