diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-24 15:10:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-24 16:13:52 +0300 |
commit | fa438213238272cce9a120da849d6c6a7157e107 (patch) | |
tree | 6fd2de6cc607123138e8c3f10c3850cddc14da49 /src/net/eathena/auctionhandler.cpp | |
parent | df44755b11b98f313e79c79fb04a5726fa990ff8 (diff) | |
download | plus-fa438213238272cce9a120da849d6c6a7157e107.tar.gz plus-fa438213238272cce9a120da849d6c6a7157e107.tar.bz2 plus-fa438213238272cce9a120da849d6c6a7157e107.tar.xz plus-fa438213238272cce9a120da849d6c6a7157e107.zip |
Rename auction receive handler into auctionrecv.
Diffstat (limited to 'src/net/eathena/auctionhandler.cpp')
-rw-r--r-- | src/net/eathena/auctionhandler.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/net/eathena/auctionhandler.cpp b/src/net/eathena/auctionhandler.cpp index 4ee007953..ddce77077 100644 --- a/src/net/eathena/auctionhandler.cpp +++ b/src/net/eathena/auctionhandler.cpp @@ -25,7 +25,7 @@ #include "net/ea/eaprotocol.h" -#include "net/eathena/auction.h" +#include "net/eathena/auctionrecv.h" #include "net/eathena/messageout.h" #include "net/eathena/protocol.h" @@ -57,23 +57,23 @@ void AuctionHandler::handleMessage(Net::MessageIn &msg) switch (msg.getId()) { case SMSG_AUCTION_OPEN_WINDOW: - Auction::processOpenWindow(msg); + AuctionRecv::processOpenWindow(msg); break; case SMSG_AUCTION_RESULTS: - Auction::processAuctionResults(msg); + AuctionRecv::processAuctionResults(msg); break; case SMSG_AUCTION_SET_ITEM: - Auction::processAuctionSetItem(msg); + AuctionRecv::processAuctionSetItem(msg); break; case SMSG_AUCTION_MESSAGE: - Auction::processAuctionMessage(msg); + AuctionRecv::processAuctionMessage(msg); break; case SMSG_AUCTION_CLOSE: - Auction::processAuctionClose(msg); + AuctionRecv::processAuctionClose(msg); break; default: |