diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-01-24 11:00:22 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-01-24 11:05:51 +0100 |
commit | 418ffcadb0a5334ebe621369c14d6c3dd651acce (patch) | |
tree | e76132cb4a9013676b9a6dc6222d5f3f68d3a099 /src/gui/widgets/dropdown.cpp | |
parent | d9dc702115d705c39a39fb1f2290f5feb8dc19c9 (diff) | |
download | mana-418ffcadb0a5334ebe621369c14d6c3dd651acce.tar.gz mana-418ffcadb0a5334ebe621369c14d6c3dd651acce.tar.bz2 mana-418ffcadb0a5334ebe621369c14d6c3dd651acce.tar.xz mana-418ffcadb0a5334ebe621369c14d6c3dd651acce.zip |
Fixed compilation issues and use of deprecated C++ features
* Fixed compiler errors due to dynamic exception specifications
* Replace std::auto_ptr with std::unique_ptr
* Replace std::mem_fun with std::mem_fn
* Prefix for_each with std:: (apparently not needed before)
* Just use lambda instead of std::bind2nd
* Removed usages of std::unary_function
Diffstat (limited to 'src/gui/widgets/dropdown.cpp')
-rw-r--r-- | src/gui/widgets/dropdown.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/dropdown.cpp b/src/gui/widgets/dropdown.cpp index e90f6073..101afaef 100644 --- a/src/gui/widgets/dropdown.cpp +++ b/src/gui/widgets/dropdown.cpp @@ -102,7 +102,7 @@ DropDown::~DropDown() buttons[1][0]->decRef(); buttons[1][1]->decRef(); - for_each(skin.grid, skin.grid + 9, dtor<Image*>()); + std::for_each(skin.grid, skin.grid + 9, dtor<Image*>()); } delete mScrollArea; |