diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-24 04:42:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-24 04:42:20 +0300 |
commit | 35d796b927447760772d2720a221e21fdf9fd10e (patch) | |
tree | 5981066559c9917f44c31577f52a19187f0bd339 /src/gui | |
parent | 07abefc34abc3731f5eb63a7616231827b11e271 (diff) | |
download | plus-35d796b927447760772d2720a221e21fdf9fd10e.tar.gz plus-35d796b927447760772d2720a221e21fdf9fd10e.tar.bz2 plus-35d796b927447760772d2720a221e21fdf9fd10e.tar.xz plus-35d796b927447760772d2720a221e21fdf9fd10e.zip |
Remove default parameters from icon.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/popups/itempopup.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/icon.h | 4 | ||||
-rw-r--r-- | src/gui/windows/itemamountwindow.cpp | 3 |
3 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/popups/itempopup.cpp b/src/gui/popups/itempopup.cpp index 28de3b641..9c0607a2f 100644 --- a/src/gui/popups/itempopup.cpp +++ b/src/gui/popups/itempopup.cpp @@ -71,7 +71,7 @@ ItemPopup::ItemPopup() : mItemCards(new TextBox(this)), mItemOptions(new TextBox(this)), mItemType(ItemDbType::UNUSABLE), - mIcon(new Icon(this, nullptr)), + mIcon(new Icon(this, nullptr, AutoRelease_false)), mLastName(), mCardsStr(), mItemOptionsStr(), diff --git a/src/gui/widgets/icon.h b/src/gui/widgets/icon.h index f0849d505..8d7bdc13e 100644 --- a/src/gui/widgets/icon.h +++ b/src/gui/widgets/icon.h @@ -44,14 +44,14 @@ class Icon final : public Widget */ Icon(const Widget2 *const widget, const std::string &filename, - const AutoRelease autoRelease = AutoRelease_false); + const AutoRelease autoRelease); /** * Constructor, uses an existing Image. */ Icon(const Widget2 *const widget, Image *const image, - const AutoRelease autoRelease = AutoRelease_false); + const AutoRelease autoRelease); A_DELETE_COPY(Icon) diff --git a/src/gui/windows/itemamountwindow.cpp b/src/gui/windows/itemamountwindow.cpp index 41916c514..75a2361bf 100644 --- a/src/gui/windows/itemamountwindow.cpp +++ b/src/gui/windows/itemamountwindow.cpp @@ -139,7 +139,8 @@ ItemAmountWindow::ItemAmountWindow(const ItemAmountWindowUsageT usage, mItemPriceTextField(nullptr), mGPLabel(nullptr), mItem(item), - mItemIcon(new Icon(this, item != nullptr ? item->getImage() : nullptr)), + mItemIcon(new Icon(this, + item != nullptr ? item->getImage() : nullptr, AutoRelease_false)), mItemAmountSlide(new Slider(this, 1.0, maxRange, 1.0)), mItemPriceSlide(nullptr), mItemDropDown(nullptr), |