diff options
author | Blue <bluesansdouze@gmail.com> | 2009-05-08 21:15:33 +0200 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-05-08 13:25:27 -0600 |
commit | a2ab6d765a3f205f282126ee4716a7b688b0c915 (patch) | |
tree | 41e6f3f8405b243f075eaf51a2578d9dc14e5362 /src/gui/connection.cpp | |
parent | c07b44461529852380765042cad0305ead408425 (diff) | |
download | mana-a2ab6d765a3f205f282126ee4716a7b688b0c915.tar.gz mana-a2ab6d765a3f205f282126ee4716a7b688b0c915.tar.bz2 mana-a2ab6d765a3f205f282126ee4716a7b688b0c915.tar.xz mana-a2ab6d765a3f205f282126ee4716a7b688b0c915.zip |
Client - Inventory handler moveItem improve
Gives the actual number of items to the moveItem method.
Fix compilation problem for twmserv client compilation.
Diffstat (limited to 'src/gui/connection.cpp')
-rw-r--r-- | src/gui/connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/connection.cpp b/src/gui/connection.cpp index 6428fb7c..0862ee69 100644 --- a/src/gui/connection.cpp +++ b/src/gui/connection.cpp @@ -36,7 +36,7 @@ ConnectionDialog::ConnectionDialog(int previousState): setContentSize(200, 100); Button *cancelButton = new Button(_("Cancel"), "cancelButton", this); - mProgressBar = new ProgressBar(0.0, 200 - 10, 20, 128, 128, 128); + mProgressBar = new ProgressBar(0.0, 200 - 10, 20, gcn::Color(128, 128, 128)); gcn::Label *label = new Label(_("Connecting...")); cancelButton->setPosition(5, 100 - 5 - cancelButton->getHeight()); |