summaryrefslogtreecommitdiff
path: root/src/gui/windows/charcreatedialog.cpp
AgeCommit message (Collapse)AuthorFilesLines
2025-06-25Split #include "utils/performance.h" out of localconsts.hFedja Beader1-0/+1
only about 160 out of 1500 files that include localconsts.h need to include performance.h Saves 12% from compile times (with profiler ON) and 0.1% with profiler OFF. **** mana/plus!189
2025-05-24Switch source code headers to ManaVerse & update copyrights to 2025Fedja Beader1-3/+3
.. instead of manaplus's header. & update copyrights to 2025. Open problem: should it be "The ManaVerse Client", "the ManaVerse client" or something in between in "This file is part of ..." line? All caps is current situation. Squashed with: * update copyright dates for 2025 * Revert "Switch to branch of mplint that checks for manaverse copyright headers" * Change back to uppercase The Why? This line was changed 3 times in history and all had an uppercase The. PS: ManaVerse has no endorsment from the parent project, ManaPlus. * Change to "This file is part of the ManaVerse Client" poppet says 'the' instead of 'The' find . \( -name "*.h" -o -name "*.cpp" -o -name "*.cc" -o -name "*.inc" \) -execdir sed -i -e 's/This file is part of The ManaPlus Client/This file is part of the ManaVerse Client/' {} \+ * Change 'The ManaPlus Client' to 'The ManaVerse Client' in headers find . \( -name "*.h" -o -name "*.cpp" -o -name "*.cc" -o -name "*.inc" \) -execdir sed -i -e '2s/ManaPlus/ManaVerse/' {} \+ * Switch to branch of mplint that checks for manaverse copyright headers .. instead of manaplus's **** mana/plus!179
2024-02-09Update copyright headers up to 2023Jesusalva Jesusalva1-1/+2
2020-05-07Add option for show/hide hidden genderAndrei Karas1-3/+6
By default hidden gender is hidden.
2019-01-01Update copyright year.Andrei Karas1-1/+1
2018-11-27Remove extra ; from different code.Andrei Karas1-1/+1
2018-10-29Fix code style.Andrei Karas1-4/+4
2018-10-19Fix code style.Andrei Karas1-3/+3
2018-06-30Rename "other" gender into "hidden" gender.Andrei Karas1-10/+9
2018-03-09Add skin parameter to all button constructors.Andrei Karas1-24/+56
2018-01-04Update copyrights year.Andrei Karas1-1/+1
2017-12-26Remove default parameters from textfield.Andrei Karas1-1/+2
2017-12-23Remove default parameters from tabstrip.Andrei Karas1-1/+2
2017-07-14Replace std::vector into macro STD_VECTOR.Andrei Karas1-3/+3
In most case it equal to std::vector except debug modes. Now it can be also mse::mstd::vector, but sadly this class not support all required features.
2017-06-13Move virtual methods from Being constructor to postInit.Andrei Karas1-1/+1
2017-06-07Fix clang-tidy check readability-implicit-bool-cast.Andrei Karas1-26/+26
2017-01-03Update copyright year.Andrei Karas1-1/+1
2016-12-19Fix hair animation in char create dialog.Andrei Karas1-0/+1
2016-06-21Add support for items with cards in charcreation.xmlAndrei Karas1-4/+6
2016-06-21In Being split setSprite into setSpriteColor and setSpriteColorId.Andrei Karas1-3/+2
2016-06-21Split in Being setSprite into setSprite and setSpriteId.Andrei Karas1-4/+2
2016-06-21Split Being::setSprite into Being::setSprite and Being::setSpriteCards.Andrei Karas1-4/+2
2016-06-20Add explicit keyword into CardsList.Andrei Karas1-2/+2
2016-06-08Simplify set weapon sprite.Andrei Karas1-2/+0
2016-06-08Add setTempSprite method into Being.Andrei Karas1-2/+0
2016-06-08Remove default value from parameter cards in Being->setSprite.Andrei Karas1-2/+4
2016-06-08Remove default value from parameter isItemSprite in Being->setSprite.Andrei Karas1-2/+4
2016-06-08Remove default value from parameter isWeapon in Being->setSprite.Andrei Karas1-2/+7
2016-06-08Remove default value from parameter colorId in Being->setSprite.Andrei Karas1-2/+3
2016-06-08Remove default value from parameter color in Being->setSprite.Andrei Karas1-1/+1
2016-05-29Fix code style.Andrei Karas1-5/+12
2016-04-23Fix code style.Andrei Karas1-1/+1
2016-04-05Remove quotes from pragmas.Andrei Karas1-3/+3
2016-03-11Fix code style.Andrei Karas1-0/+2
2016-03-05Move getNumOfHairstyles from being to itemdb.Andrei Karas1-3/+3
2016-02-23Fix compilation with gcc 4.4 or older.Andrei Karas1-3/+3
2016-02-23Add pragmas for disable -Wswitch-bool in some places.Andrei Karas1-0/+3
2016-02-20Add missing const in gui directory.Andrei Karas1-2/+3
2016-02-14Fix crash in char creation if stats was hidden (tmwa).Andrei Karas1-1/+4
2016-02-10Fix compilation warnings.Andrei Karas1-7/+7
2016-02-10Allow hide player stats sliders in char creation dialog.Andrei Karas1-11/+29
It hidden if configuration parameters is wrong.
2016-02-07Replace most static_cast<Type> to shorter versions from defines.Andrei Karas1-13/+13
2016-01-27In char create dialog allow hair style with wrong range.Andrei Karas1-20/+37
2016-01-27In char create dialog allow hair color with wrong range.Andrei Karas1-26/+53
2016-01-25In char creation dialog show race fields only if more than 1 races in ↵Andrei Karas1-5/+5
configuration.
2016-01-02Update copyrights year.Andrei Karas1-1/+1
2015-11-15Add support for other gender in char creation dialog.Andrei Karas1-4/+31
2015-11-14Add features.xml attribute for force char gender for new chars.Andrei Karas1-21/+35
New attribute: forceCharGender Default value: -1 (mean not forcing)
2015-11-14Add features.xml attribute for force account gender for new chars.Andrei Karas1-2/+5
New attribute: forceAccountGender Default value: -1 (mean not forcing)
2015-11-11Fix attibutes left label in char create dialog.Andrei Karas1-6/+12