summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-03-10 16:40:52 +0300
committerAndrei Karas <akaras@inbox.ru>2017-03-10 16:40:52 +0300
commit4df1e68047488ec00a264c076bb3222715f42295 (patch)
tree22ea99ebcd00a6c9d6da0729706b765a49085c5f /src/client.cpp
parentbfc5d7483c0a81409ebf08603f634e88b8db03f8 (diff)
downloadplus-4df1e68047488ec00a264c076bb3222715f42295.tar.gz
plus-4df1e68047488ec00a264c076bb3222715f42295.tar.bz2
plus-4df1e68047488ec00a264c076bb3222715f42295.tar.xz
plus-4df1e68047488ec00a264c076bb3222715f42295.zip
Fix new style issue detected by mplint.
new class() -> new class
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 7a7f420ac..63380868c 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -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", "");