diff options
| author | David Skoland <davidskoland@gmail.com> | 2017-01-03 15:02:44 +0100 |
|---|---|---|
| committer | David Skoland <davidskoland@gmail.com> | 2017-01-03 15:02:44 +0100 |
| commit | f96011452b845a57159094abc501c3aebe6f16fa (patch) | |
| tree | fb6973a520e3b11f49d001018b083a2b42808c7a | |
| parent | 455d6106e3c923e86b1b75687d1dbd3c52e8a11b (diff) | |
renaming for clarity
| -rw-r--r-- | lobby.cpp | 2 | ||||
| -rw-r--r-- | lobby.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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); @@ -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; |
