diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/npchandler.cpp | 2 | ||||
-rw-r--r-- | src/net/tmwa/playerhandler.cpp | 9 |
2 files changed, 2 insertions, 9 deletions
diff --git a/src/net/tmwa/npchandler.cpp b/src/net/tmwa/npchandler.cpp index 84fe1789c..22f4c7687 100644 --- a/src/net/tmwa/npchandler.cpp +++ b/src/net/tmwa/npchandler.cpp @@ -112,7 +112,7 @@ void NpcHandler::handleMessage(Net::MessageIn &msg) msg.readString(msg.getLength() - 8); break; - case SMSG_NPC_CLOSE: + case SMSG_NPC_CLOSE: // Show the close button if (dialog) dialog->showCloseButton(); diff --git a/src/net/tmwa/playerhandler.cpp b/src/net/tmwa/playerhandler.cpp index 8ef19c373..528e727a3 100644 --- a/src/net/tmwa/playerhandler.cpp +++ b/src/net/tmwa/playerhandler.cpp @@ -29,12 +29,8 @@ #include "playerinfo.h" #include "units.h" -#include "gui/buy.h" -#include "gui/buysell.h" #include "gui/gui.h" -#include "gui/npcdialog.h" #include "gui/okdialog.h" -#include "gui/sell.h" #include "gui/skilldialog.h" #include "gui/statuswindow.h" #include "gui/viewport.h" @@ -79,10 +75,7 @@ namespace Net::getPlayerHandler()->respawn(); deathNotice = NULL; - BuyDialog::closeAll(); - BuySellDialog::closeAll(); - NpcDialog::closeAll(); - SellDialog::closeAll(); + Client::closeDialogs(); if (viewport) viewport->closePopupMenu(); |