summaryrefslogtreecommitdiff
path: root/src/gui/sell.cpp
diff options
context:
space:
mode:
authorJan-Fabian Humann <malastare@gmx.net>2005-05-10 15:17:17 +0000
committerJan-Fabian Humann <malastare@gmx.net>2005-05-10 15:17:17 +0000
commit0bc81cb39f48fdade13cf964702072cd9a7e324d (patch)
treede2d35865253ede90a893da57fc8ab30a599bdb6 /src/gui/sell.cpp
parentc8a7dd468b50e8cfd84c859f0a03c68b176942e9 (diff)
downloadmana-client-0bc81cb39f48fdade13cf964702072cd9a7e324d.tar.gz
mana-client-0bc81cb39f48fdade13cf964702072cd9a7e324d.tar.bz2
mana-client-0bc81cb39f48fdade13cf964702072cd9a7e324d.tar.xz
mana-client-0bc81cb39f48fdade13cf964702072cd9a7e324d.zip
fixing a bug which occured when ItemManager's constructor calls logger (for example if items.xml is missing)
Diffstat (limited to 'src/gui/sell.cpp')
-rw-r--r--src/gui/sell.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/sell.cpp b/src/gui/sell.cpp
index e12b61ed..f2e1677f 100644
--- a/src/gui/sell.cpp
+++ b/src/gui/sell.cpp
@@ -94,7 +94,7 @@ void SellDialog::addItem(short index, int price)
ITEM_SHOP item_shop;
sprintf(item_shop.name, "%s %i gp",
- itemDb.getItemInfo(id)->getName().c_str(), price);
+ itemDb->getItemInfo(id)->getName().c_str(), price);
item_shop.price = price;
item_shop.index = index;
item_shop.id = id;