Partially modified to use C++11 standard nullptr

Change-Id: I0542c47d1979235206005bf603822b6ea415f2da
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
bb10
chenbin 2021-09-03 11:52:11 +08:00
parent d2cad026c7
commit 0624eba1b1
1 changed files with 1 additions and 1 deletions

View File

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