diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-11 18:43:56 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-11 18:43:56 +0000 |
commit | d7015ada2a147926e7cedf80d10ea281c6e06798 (patch) | |
tree | d385ad0989883f70e8c8e8b093b74eb2ffa92281 /src | |
parent | a960554e550ef12455f68fee540f9054faa6c618 (diff) | |
download | mana-d7015ada2a147926e7cedf80d10ea281c6e06798.tar.gz mana-d7015ada2a147926e7cedf80d10ea281c6e06798.tar.bz2 mana-d7015ada2a147926e7cedf80d10ea281c6e06798.tar.xz mana-d7015ada2a147926e7cedf80d10ea281c6e06798.zip |
Fixed visibility of the update window.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/updatewindow.cpp | 4 | ||||
-rw-r--r-- | src/localplayer.cpp | 6 | ||||
-rw-r--r-- | src/localplayer.h | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/src/gui/updatewindow.cpp b/src/gui/updatewindow.cpp index d8244d37..a23438cb 100644 --- a/src/gui/updatewindow.cpp +++ b/src/gui/updatewindow.cpp @@ -83,8 +83,9 @@ UpdaterWindow::UpdaterWindow(): add(mCancelButton); add(mPlayButton); - mCancelButton->requestFocus(); setLocationRelativeTo(getParent()); + setVisible(true); + mCancelButton->requestFocus(); mUpdateHost = config.getValue("updatehost", "http://updates.themanaworld.org"); @@ -179,7 +180,6 @@ void UpdaterWindow::loadNews() mMemoryBuffer = NULL; mScrollArea->setVerticalScrollAmount(0); - setVisible(true); } void UpdaterWindow::addRow(const std::string &row) diff --git a/src/localplayer.cpp b/src/localplayer.cpp index d5484ac3..f842042c 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -232,10 +232,10 @@ void LocalPlayer::walk(unsigned char dir) void LocalPlayer::setDestination(Uint16 x, Uint16 y) { // Only send a new message to the server when destination changes - if (x != destX || y != destY) + if (x != mDestX || y != mDestY) { - destX = x; - destY = y; + mDestX = x; + mDestY = y; char temp[3]; MessageOut outMsg(mNetwork); diff --git a/src/localplayer.h b/src/localplayer.h index 04477af2..7cad9bc4 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -162,8 +162,8 @@ class LocalPlayer : public Player bool mTrading; int mLastAction; /**< Time stamp of the last action, -1 if none. */ int mWalkingDir; /**< The direction the player is walking in. */ - int destX; /**< X coordinate of destination. */ - int destY; /**< Y coordinate of destination. */ + int mDestX; /**< X coordinate of destination. */ + int mDestY; /**< Y coordinate of destination. */ }; extern LocalPlayer *player_node; |