summaryrefslogtreecommitdiff
path: root/src/net/eathena/auctionhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-24 15:10:32 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-24 16:13:52 +0300
commitfa438213238272cce9a120da849d6c6a7157e107 (patch)
tree6fd2de6cc607123138e8c3f10c3850cddc14da49 /src/net/eathena/auctionhandler.cpp
parentdf44755b11b98f313e79c79fb04a5726fa990ff8 (diff)
downloadplus-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.cpp12
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: