diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-10-16 21:18:11 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-10-16 21:18:11 +0000 |
commit | d3175115354bb2417f01877a96d0068e2f2c875d (patch) | |
tree | 3fe6dde2b7922eb12bc376687ae18a59971d908e /src/gui/popupmenu.cpp | |
parent | 43a80fa64acb7f02cf5305b4a3d2ef6040b4b8c9 (diff) | |
download | mana-d3175115354bb2417f01877a96d0068e2f2c875d.tar.gz mana-d3175115354bb2417f01877a96d0068e2f2c875d.tar.bz2 mana-d3175115354bb2417f01877a96d0068e2f2c875d.tar.xz mana-d3175115354bb2417f01877a96d0068e2f2c875d.zip |
Rename {read,write}{Byte,Short,Long} to {read,write}Int{8,16,32}.
Diffstat (limited to 'src/gui/popupmenu.cpp')
-rw-r--r-- | src/gui/popupmenu.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp index 6bb57f60..e6d3b402 100644 --- a/src/gui/popupmenu.cpp +++ b/src/gui/popupmenu.cpp @@ -135,9 +135,9 @@ void PopupMenu::handleLink(const std::string& link) current_npc == 0) { MessageOut outMsg; - outMsg.writeShort(CMSG_NPC_TALK); - outMsg.writeLong(mBeing->getId()); - outMsg.writeByte(0); + outMsg.writeInt16(CMSG_NPC_TALK); + outMsg.writeInt32(mBeing->getId()); + outMsg.writeInt8(0); current_npc = mBeing->getId(); } @@ -147,8 +147,8 @@ void PopupMenu::handleLink(const std::string& link) mBeing->getType() == Being::PLAYER) { MessageOut outMsg; - outMsg.writeShort(CMSG_TRADE_REQUEST); - outMsg.writeLong(mBeing->getId()); + outMsg.writeInt16(CMSG_TRADE_REQUEST); + outMsg.writeInt32(mBeing->getId()); //tradePartner.flush(); //tradePartner << "Trade: You and " << being->name<< ""; tradePartnerName = mBeing->getName(); @@ -183,8 +183,8 @@ void PopupMenu::handleLink(const std::string& link) else if ((link == "pickup") && mFloorItem != NULL) { MessageOut outMsg; - outMsg.writeShort(CMSG_ITEM_PICKUP); - outMsg.writeLong(mFloorItem->getId()); + outMsg.writeInt16(CMSG_ITEM_PICKUP); + outMsg.writeInt32(mFloorItem->getId()); } // Look To action |