diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/windows/npcselldialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/npcselldialog.cpp b/src/gui/windows/npcselldialog.cpp index c1fdbe259..2645f4798 100644 --- a/src/gui/windows/npcselldialog.cpp +++ b/src/gui/windows/npcselldialog.cpp @@ -28,6 +28,7 @@ #include "gui/models/shopitems.h" +#include "gui/widgets/createwidget.h" #include "gui/widgets/shoplistbox.h" #include "gui/widgets/slider.h" @@ -62,7 +63,7 @@ void NpcSellDialog::sellAction(const ActionEvent &event) const ItemInfo &info = ItemDB::get(item->getId()); if (info.isProtected()) { - ConfirmDialog *const dialog = new ConfirmDialog( + ConfirmDialog *const dialog = CREATEWIDGETR(ConfirmDialog, // TRANSLATORS: sell confirmation header _("sell item"), // TRANSLATORS: sell confirmation message @@ -71,7 +72,6 @@ void NpcSellDialog::sellAction(const ActionEvent &event) SOUND_REQUEST, false, Modal_true); - dialog->postInit(); dialog->addActionListener(this); return; } |