summaryrefslogtreecommitdiff
path: root/src/gui/skilldialog.cpp
diff options
context:
space:
mode:
authorBlue <bluesansdouze@gmail.com>2009-05-08 21:15:33 +0200
committerJared Adams <jaxad0127@gmail.com>2009-05-08 13:25:27 -0600
commita2ab6d765a3f205f282126ee4716a7b688b0c915 (patch)
tree41e6f3f8405b243f075eaf51a2578d9dc14e5362 /src/gui/skilldialog.cpp
parentc07b44461529852380765042cad0305ead408425 (diff)
downloadmana-client-a2ab6d765a3f205f282126ee4716a7b688b0c915.tar.gz
mana-client-a2ab6d765a3f205f282126ee4716a7b688b0c915.tar.bz2
mana-client-a2ab6d765a3f205f282126ee4716a7b688b0c915.tar.xz
mana-client-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/skilldialog.cpp')
-rw-r--r--src/gui/skilldialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/skilldialog.cpp b/src/gui/skilldialog.cpp
index 48931bf7..f0cd01ce 100644
--- a/src/gui/skilldialog.cpp
+++ b/src/gui/skilldialog.cpp
@@ -184,7 +184,7 @@ SkillTab::SkillTab(const std::string &type): type(type)
mSkillNameLabels.at(a)->setPosition(35, a*32 );
add(mSkillNameLabels.at(a));
- mSkillProgress.at(a) = new ProgressBar(0.0f, 200, 20, 150, 150, 150);
+ mSkillProgress.at(a) = new ProgressBar(0.0f, 200, 20, gcn::Color(150, 150, 150));
mSkillProgress.at(a)->setPosition(35, a*32 + 13);
add(mSkillProgress.at(a));