diff options
author | Ira Rice <irarice@gmail.com> | 2009-02-03 13:00:05 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-03 13:00:05 -0700 |
commit | 6c5d9cd16b750ae9404407171a5641b5e0ee78b5 (patch) | |
tree | fac8cf1c740ba2a122f8caadfbc1584a98b60d65 | |
parent | 269e05e71f09cac3d181f2042cde01e5541658f3 (diff) | |
download | mana-6c5d9cd16b750ae9404407171a5641b5e0ee78b5.tar.gz mana-6c5d9cd16b750ae9404407171a5641b5e0ee78b5.tar.bz2 mana-6c5d9cd16b750ae9404407171a5641b5e0ee78b5.tar.xz mana-6c5d9cd16b750ae9404407171a5641b5e0ee78b5.zip |
Changed the listbox in the color setup pane to use the customized
listbox.
Signed-off-by: Ira Rice <irarice@gmail.com>
-rw-r--r-- | src/gui/setup_colours.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/setup_colours.cpp b/src/gui/setup_colours.cpp index c08c94ef..95e6fff0 100644 --- a/src/gui/setup_colours.cpp +++ b/src/gui/setup_colours.cpp @@ -26,6 +26,7 @@ #include <guichan/widgets/slider.hpp> #include "colour.h" +#include "listbox.h" #include "scrollarea.h" #include "setup_colours.h" #include "slider.h" @@ -42,7 +43,7 @@ Setup_Colours::Setup_Colours() : { setOpaque(false); - mColourBox = new gcn::ListBox(textColour); + mColourBox = new ListBox(textColour); mColourBox->setActionEventId("colour_box"); mColourBox->addActionListener(this); |