summaryrefslogtreecommitdiff
path: root/src/gui/skilldialog.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-08-10 20:28:23 -0600
committerJared Adams <jaxad0127@gmail.com>2009-08-10 20:28:23 -0600
commit9af6e761373f25b56e815f1f75b44473474cf280 (patch)
tree4393f9297c892fc1289c29eb4753462554b498df /src/gui/skilldialog.h
parent56865a2c98a589a1e530e296b1681e369e2ae48f (diff)
downloadmana-client-9af6e761373f25b56e815f1f75b44473474cf280.tar.gz
mana-client-9af6e761373f25b56e815f1f75b44473474cf280.tar.bz2
mana-client-9af6e761373f25b56e815f1f75b44473474cf280.tar.xz
mana-client-9af6e761373f25b56e815f1f75b44473474cf280.zip
Fix TabbedArea and ScrollArea to resize contents
Also remove that code from SkillDialog. I tried to do the same with ChatWindow, but it kept segfaulting. Will try again later.
Diffstat (limited to 'src/gui/skilldialog.h')
-rw-r--r--src/gui/skilldialog.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gui/skilldialog.h b/src/gui/skilldialog.h
index 6ad28be4..8fa7443d 100644
--- a/src/gui/skilldialog.h
+++ b/src/gui/skilldialog.h
@@ -54,12 +54,6 @@ class SkillDialog : public Window, public gcn::ActionListener
*/
void action(const gcn::ActionEvent &event);
- /**
- * Called when the widget changes size. Used for adapting the size of
- * the tabbed area.
- */
- void widgetResized(const gcn::Event &event);
-
void logic();
/**
@@ -77,8 +71,6 @@ class SkillDialog : public Window, public gcn::ActionListener
void setModifiable(int id, bool modifiable);
private:
- void adjustTabSize();
-
typedef std::map<int, SkillInfo*> SkillMap;
SkillMap mSkills;
Tab *mCurrentTab;