Fix new style issue detected by mplint.

new class() -> new class
This commit is contained in:
Andrei Karas 2017-03-10 16:40:52 +03:00
parent bfc5d7483c
commit 4df1e68047
No known key found for this signature in database
GPG key ID: DC29B02EF28D2D9A
27 changed files with 59 additions and 59 deletions

View file

@ -167,7 +167,7 @@ GraphicsManager::~GraphicsManager()
#ifdef USE_OPENGL
TestMain *GraphicsManager::startDetection()
{
TestMain *const test = new TestMain();
TestMain *const test = new TestMain;
test->exec(false);
return test;
}