mirror of
https://git.themanaworld.org/mana/verse
synced 2026-08-16 04:23:07 -04:00
Fix new style issue detected by mplint.
new class() -> new class
This commit is contained in:
parent
bfc5d7483c
commit
4df1e68047
27 changed files with 59 additions and 59 deletions
|
|
@ -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", "");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue