From f96011452b845a57159094abc501c3aebe6f16fa Mon Sep 17 00:00:00 2001 From: David Skoland Date: Tue, 3 Jan 2017 15:02:44 +0100 Subject: [PATCH] renaming for clarity --- lobby.cpp | 2 +- lobby.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lobby.cpp b/lobby.cpp index 24e3ae9..bb941a6 100644 --- a/lobby.cpp +++ b/lobby.cpp @@ -9,7 +9,7 @@ Lobby::Lobby(AOApplication *parent) : QMainWindow() { - m_parent = parent; + ao_app = parent; this->setWindowTitle("Attorney Online 2"); this->resize(m_lobby_width, m_lobby_height); diff --git a/lobby.h b/lobby.h index d67be82..ca903f9 100644 --- a/lobby.h +++ b/lobby.h @@ -23,7 +23,7 @@ private: const int m_lobby_width = 517; const int m_lobby_height = 666; - AOApplication *m_parent; + AOApplication *ao_app; AOImage *ui_background;