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;