diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-04-28 12:43:10 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-04-28 12:43:52 -0600 |
commit | 0a2abc874b25d2daba54e70b3a08080e1223f6ba (patch) | |
tree | 03cf1109a00aab3fefad74e7efa22a312f1596ef | |
parent | c6ecbbecfeffe935a77bd79754cb59fbd1446a3e (diff) | |
download | mana-client-0a2abc874b25d2daba54e70b3a08080e1223f6ba.tar.gz mana-client-0a2abc874b25d2daba54e70b3a08080e1223f6ba.tar.bz2 mana-client-0a2abc874b25d2daba54e70b3a08080e1223f6ba.tar.xz mana-client-0a2abc874b25d2daba54e70b3a08080e1223f6ba.zip |
Remove some more support #ifdefs
-rw-r--r-- | src/gui/inventorywindow.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index c73a12ea..33115f96 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -77,10 +77,8 @@ InventoryWindow::InventoryWindow(int invSize): mDropButton = new Button(_("Drop"), "drop", this); #ifdef TMWSERV_SUPPORT mSplitButton = new Button(_("Split"), "split", this); - mItems = new ItemContainer(player_node->getInventory()); -#else - mItems = new ItemContainer(player_node->getInventory()); #endif + mItems = new ItemContainer(player_node->getInventory()); mItems->addSelectionListener(this); gcn::ScrollArea *invenScroll = new ScrollArea(mItems); @@ -167,14 +165,10 @@ void InventoryWindow::action(const gcn::ActionEvent &event) if (event.getId() == "use") { if (item->isEquipment()) { -#ifdef TMWSERV_SUPPORT - player_node->equipItem(item); -#else if (item->isEquipped()) player_node->unequipItem(item); else player_node->equipItem(item); -#endif } else player_node->useItem(item); @@ -268,11 +262,9 @@ void InventoryWindow::updateButtons() if (selectedItem && selectedItem->isEquipment()) { -#ifdef EATHENA_SUPPORT if (selectedItem->isEquipped()) mUseButton->setCaption(_("Unequip")); else -#endif mUseButton->setCaption(_("Equip")); } else |