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

@ -445,7 +445,7 @@ void Client::gameInit()
emoteShortcut = new EmoteShortcut;
dropShortcut = new DropShortcut;
gui = new Gui();
gui = new Gui;
gui->postInit(mainGraphics);
dialogsManager = new DialogsManager;
popupManager = new PopupManager;
@ -527,7 +527,7 @@ void Client::gameInit()
#ifdef USE_MUMBLE
if (!mumbleManager)
mumbleManager = new MumbleManager();
mumbleManager = new MumbleManager;
#endif // USE_MUMBLE
mSkin = theme->load("windowmenu.xml", "");