diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-22 14:41:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-22 14:41:32 +0300 |
commit | 23ca69dbf704cd289d58f023689289fcab515464 (patch) | |
tree | 15bc9d2b2b16746689b15bca181f9048320173b9 /src/gui/windows/shopselldialog.cpp | |
parent | beaddb973febb0570a9d035c2221e4fd06e3ac47 (diff) | |
download | ManaVerse-23ca69dbf704cd289d58f023689289fcab515464.tar.gz ManaVerse-23ca69dbf704cd289d58f023689289fcab515464.tar.bz2 ManaVerse-23ca69dbf704cd289d58f023689289fcab515464.tar.xz ManaVerse-23ca69dbf704cd289d58f023689289fcab515464.zip |
Simplify SellDialog.
Diffstat (limited to 'src/gui/windows/shopselldialog.cpp')
-rw-r--r-- | src/gui/windows/shopselldialog.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/windows/shopselldialog.cpp b/src/gui/windows/shopselldialog.cpp index 71775e726..44b15fd42 100644 --- a/src/gui/windows/shopselldialog.cpp +++ b/src/gui/windows/shopselldialog.cpp @@ -54,7 +54,8 @@ #include "debug.h" ShopSellDialog::ShopSellDialog(const std::string &nick) : - SellDialog(nick) + SellDialog(), + mNick(nick) { } |