From af3badf7a9307acd4993764cd805718849e4f942 Mon Sep 17 00:00:00 2001 From: Vincent Glize Date: Wed, 21 Jun 2017 08:04:45 +0200 Subject: C++11 cleanup on constructors dir client (#6012) * C++11 cleanup on constructors dir client --- src/client/clientlauncher.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client/clientlauncher.cpp') diff --git a/src/client/clientlauncher.cpp b/src/client/clientlauncher.cpp index 1a7970872..9856c1920 100644 --- a/src/client/clientlauncher.cpp +++ b/src/client/clientlauncher.cpp @@ -38,8 +38,8 @@ with this program; if not, write to the Free Software Foundation, Inc., /* mainmenumanager.h */ -gui::IGUIEnvironment *guienv = NULL; -gui::IGUIStaticText *guiroot = NULL; +gui::IGUIEnvironment *guienv = nullptr; +gui::IGUIStaticText *guiroot = nullptr; MainMenuManager g_menumgr; bool isMenuActive() @@ -48,7 +48,7 @@ bool isMenuActive() } // Passed to menus to allow disconnecting and exiting -MainGameCallback *g_gamecallback = NULL; +MainGameCallback *g_gamecallback = nullptr; ClientLauncher::~ClientLauncher() -- cgit v1.2.3