Partially modified to use C++11 standard nullptr

Change-Id: I0542c47d1979235206005bf603822b6ea415f2da
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
chenbin 2021-09-03 11:52:11 +08:00
parent d2cad026c7
commit 0624eba1b1

View File

@ -95,7 +95,7 @@ QStyle *MyStylePlugin::create(const QString &key)
} else if (lcKey == "starbuster") { } else if (lcKey == "starbuster") {
return new StarBusterStyle; return new StarBusterStyle;
} }
return 0; return nullptr;
} }
//! [1] //! [1]