diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-18 00:45:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-18 00:45:23 +0300 |
commit | 14a0a04b2bb3928f7429fd748dd40e1843fca571 (patch) | |
tree | 28f772d80afd66838b0123efeac005f445a39bce /src/gui/windows/charcreatedialog.cpp | |
parent | 1d71d02a40dc1f4c50572bf0681bbc2907a3c361 (diff) | |
download | plus-14a0a04b2bb3928f7429fd748dd40e1843fca571.tar.gz plus-14a0a04b2bb3928f7429fd748dd40e1843fca571.tar.bz2 plus-14a0a04b2bb3928f7429fd748dd40e1843fca571.tar.xz plus-14a0a04b2bb3928f7429fd748dd40e1843fca571.zip |
Remove default constructor from Widget2.
Diffstat (limited to 'src/gui/windows/charcreatedialog.cpp')
-rw-r--r-- | src/gui/windows/charcreatedialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/charcreatedialog.cpp b/src/gui/windows/charcreatedialog.cpp index a3fdcde3a..d6b572d40 100644 --- a/src/gui/windows/charcreatedialog.cpp +++ b/src/gui/windows/charcreatedialog.cpp @@ -124,7 +124,7 @@ CharCreateDialog::CharCreateDialog(CharSelectDialog *const parent, mMaxLook(CharDB::getMaxLook()), mPlayer(new Being(0, ActorSprite::PLAYER, static_cast<uint16_t>(mRace), nullptr)), - mPlayerBox(new PlayerBox(mPlayer, "charcreate_playerbox.xml", + mPlayerBox(new PlayerBox(this, mPlayer, "charcreate_playerbox.xml", "charcreate_selectedplayerbox.xml")), mHairStyle(0), mHairColor(0), @@ -528,7 +528,7 @@ void CharCreateDialog::setAttributes(const StringVect &labels, mAttributeLabel[i]->adjustSize(); add(mAttributeLabel[i]); - mAttributeSlider[i] = new Slider(min, max); + mAttributeSlider[i] = new Slider(this, min, max); mAttributeSlider[i]->setDimension(gcn::Rectangle(140, y + i * 24, 150, 12)); mAttributeSlider[i]->setActionEventId("statslider"); |