diff options
author | David Athay <ko2fan@gmail.com> | 2008-05-09 15:23:32 +0000 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2008-05-09 15:23:32 +0000 |
commit | b57ab24cdaa596bf91604279c97fbfdeff1dc93b (patch) | |
tree | af0c7bb16c60cc9055b45b6929483c05de8facac /src/gui/widgets | |
parent | 96c635e12b1834493abfbe4685cfc1d6a3eaddc4 (diff) | |
download | mana-b57ab24cdaa596bf91604279c97fbfdeff1dc93b.tar.gz mana-b57ab24cdaa596bf91604279c97fbfdeff1dc93b.tar.bz2 mana-b57ab24cdaa596bf91604279c97fbfdeff1dc93b.tar.xz mana-b57ab24cdaa596bf91604279c97fbfdeff1dc93b.zip |
Changed the tabbedarea to be transparant as before. Changed setup
window and skills dialog to use the new tabbed area. Removed tabbed
container as it is no longer used. Fixed a crash with the chat window.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/tabbedarea.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/tabbedarea.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/widgets/tabbedarea.cpp b/src/gui/widgets/tabbedarea.cpp index a36688e2..7821190b 100644 --- a/src/gui/widgets/tabbedarea.cpp +++ b/src/gui/widgets/tabbedarea.cpp @@ -57,7 +57,7 @@ void TabbedArea::draw(gcn::Graphics *graphics) return; } - gcn::TabbedArea::draw(graphics); + drawChildren(graphics); } gcn::Widget* TabbedArea::getWidget(const std::string &name) diff --git a/src/gui/widgets/tabbedarea.h b/src/gui/widgets/tabbedarea.h index 0c5d18f7..bc623427 100644 --- a/src/gui/widgets/tabbedarea.h +++ b/src/gui/widgets/tabbedarea.h @@ -65,7 +65,6 @@ class TabbedArea : public gcn::TabbedArea * Overload the remove tab function as its broken in guichan 0.8 */ void removeTab(gcn::Tab *tab); - }; #endif |