aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Skoland <davidskoland@gmail.com>2017-01-03 15:02:44 +0100
committerDavid Skoland <davidskoland@gmail.com>2017-01-03 15:02:44 +0100
commitf96011452b845a57159094abc501c3aebe6f16fa (patch)
treefb6973a520e3b11f49d001018b083a2b42808c7a
parent455d6106e3c923e86b1b75687d1dbd3c52e8a11b (diff)
renaming for clarity
-rw-r--r--lobby.cpp2
-rw-r--r--lobby.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/lobby.cpp b/lobby.cpp
index 24e3ae99..bb941a6b 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 d67be82d..ca903f96 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;