renaming for clarity

This commit is contained in:
David Skoland 2017-01-03 15:02:44 +01:00
parent 455d6106e3
commit f96011452b
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
Lobby::Lobby(AOApplication *parent) : QMainWindow() Lobby::Lobby(AOApplication *parent) : QMainWindow()
{ {
m_parent = parent; ao_app = parent;
this->setWindowTitle("Attorney Online 2"); this->setWindowTitle("Attorney Online 2");
this->resize(m_lobby_width, m_lobby_height); this->resize(m_lobby_width, m_lobby_height);

View File

@ -23,7 +23,7 @@ private:
const int m_lobby_width = 517; const int m_lobby_width = 517;
const int m_lobby_height = 666; const int m_lobby_height = 666;
AOApplication *m_parent; AOApplication *ao_app;
AOImage *ui_background; AOImage *ui_background;