Browse Source

Drop GUIConfirmRegistration::m_address unused field

Loïc Blot 5 years ago
parent
commit
e22a69d61a
3 changed files with 4 additions and 5 deletions
  1. 1 1
      src/client/game.cpp
  2. 2 2
      src/gui/guiConfirmRegistration.cpp
  3. 1 2
      src/gui/guiConfirmRegistration.h

+ 1 - 1
src/client/game.cpp

@@ -1545,7 +1545,7 @@ bool Game::connectToServer(const std::string &playername,
 				} else {
 					registration_confirmation_shown = true;
 					(new GUIConfirmRegistration(guienv, guienv->getRootGUIElement(), -1,
-						   &g_menumgr, client, playername, password, *address, connection_aborted))->drop();
+						   &g_menumgr, client, playername, password, connection_aborted))->drop();
 				}
 			} else {
 				wait_time += dtime;

+ 2 - 2
src/gui/guiConfirmRegistration.cpp

@@ -38,10 +38,10 @@ const int ID_cancel = 265;
 GUIConfirmRegistration::GUIConfirmRegistration(gui::IGUIEnvironment *env,
 		gui::IGUIElement *parent, s32 id, IMenuManager *menumgr, Client *client,
 		const std::string &playername, const std::string &password,
-		const std::string &address, bool *aborted) :
+		bool *aborted) :
 		GUIModalMenu(env, parent, id, menumgr),
 		m_client(client), m_playername(playername), m_password(password),
-		m_address(address), m_aborted(aborted)
+		m_aborted(aborted)
 {
 #ifdef __ANDROID__
 	m_touchscreen_visible = false;

+ 1 - 2
src/gui/guiConfirmRegistration.h

@@ -32,7 +32,7 @@ public:
 	GUIConfirmRegistration(gui::IGUIEnvironment *env, gui::IGUIElement *parent,
 			s32 id, IMenuManager *menumgr, Client *client,
 			const std::string &playername, const std::string &password,
-			const std::string &address, bool *aborted);
+			bool *aborted);
 	~GUIConfirmRegistration();
 
 	void removeChildren();
@@ -61,7 +61,6 @@ private:
 	Client *m_client = nullptr;
 	const std::string &m_playername;
 	const std::string &m_password;
-	const std::string &m_address;
 	bool *m_aborted = nullptr;
 	std::wstring m_pass_confirm = L"";
 };