diff options
Diffstat (limited to 'src/resources/theme.cpp')
-rw-r--r-- | src/resources/theme.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/theme.cpp b/src/resources/theme.cpp index 8db05be9..84d6311b 100644 --- a/src/resources/theme.cpp +++ b/src/resources/theme.cpp @@ -88,8 +88,8 @@ void Skin::updateAlpha(float minimumOpacityAllowed) void Skin::setAlpha(float alpha) { - for_each(mBorder.grid, mBorder.grid + 9, - std::bind2nd(std::mem_fun(&Image::setAlpha), alpha)); + std::for_each(mBorder.grid, mBorder.grid + 9, + [=] (Image *img) { img->setAlpha(alpha); }); mCloseImage->setAlpha(alpha); mStickyImageUp->setAlpha(alpha); |