From b43854b65e0c8bdbc37db2a0b6e2e86ebf11e7f7 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 7 Apr 2013 20:22:42 +0300 Subject: remove some default values for parameters. --- src/net/eathena/partyhandler.h | 2 +- src/net/eathena/playerhandler.h | 4 ++-- src/net/partyhandler.h | 2 +- src/net/playerhandler.h | 4 ++-- src/net/tmwa/partyhandler.h | 2 +- src/net/tmwa/playerhandler.h | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) (limited to 'src/net') diff --git a/src/net/eathena/partyhandler.h b/src/net/eathena/partyhandler.h index 4b18344e8..bf58b58aa 100644 --- a/src/net/eathena/partyhandler.h +++ b/src/net/eathena/partyhandler.h @@ -43,7 +43,7 @@ class PartyHandler final : public MessageHandler, public Ea::PartyHandler void handleMessage(Net::MessageIn &msg); - void create(const std::string &name = ""); + void create(const std::string &name); void invite(Being *being); diff --git a/src/net/eathena/playerhandler.h b/src/net/eathena/playerhandler.h index bdc77c59b..87bd2a7c6 100644 --- a/src/net/eathena/playerhandler.h +++ b/src/net/eathena/playerhandler.h @@ -42,7 +42,7 @@ class PlayerHandler final : public MessageHandler, public Ea::PlayerHandler void handleMessage(Net::MessageIn &msg); - void attack(int id, bool keep = false); + void attack(int id, bool keep); void stopAttack(); void emote(uint8_t emoteId); @@ -51,7 +51,7 @@ class PlayerHandler final : public MessageHandler, public Ea::PlayerHandler void pickUp(const FloorItem *floorItem); void setDirection(unsigned char direction); - void setDestination(int x, int y, int direction = -1); + void setDestination(int x, int y, int direction); void changeAction(Being::Action action); void updateStatus(uint8_t status); diff --git a/src/net/partyhandler.h b/src/net/partyhandler.h index cd75e51fe..553f73e83 100644 --- a/src/net/partyhandler.h +++ b/src/net/partyhandler.h @@ -48,7 +48,7 @@ class PartyHandler virtual ~PartyHandler() { } - virtual void create(const std::string &name = "") = 0; + virtual void create(const std::string &name) = 0; virtual void join(int partyId) = 0; diff --git a/src/net/playerhandler.h b/src/net/playerhandler.h index 01ab732e3..d0a9fb512 100644 --- a/src/net/playerhandler.h +++ b/src/net/playerhandler.h @@ -36,7 +36,7 @@ class PlayerHandler virtual ~PlayerHandler() { } - virtual void attack(int id, bool keep = false) = 0; + virtual void attack(int id, bool keep) = 0; virtual void stopAttack() = 0; @@ -52,7 +52,7 @@ class PlayerHandler virtual void setDirection(unsigned char direction) = 0; - virtual void setDestination(int x, int y, int direction = -1) = 0; + virtual void setDestination(int x, int y, int direction) = 0; virtual void changeAction(Being::Action action) = 0; diff --git a/src/net/tmwa/partyhandler.h b/src/net/tmwa/partyhandler.h index 27f4993a8..352e57d7d 100644 --- a/src/net/tmwa/partyhandler.h +++ b/src/net/tmwa/partyhandler.h @@ -43,7 +43,7 @@ class PartyHandler final : public MessageHandler, public Ea::PartyHandler void handleMessage(Net::MessageIn &msg); - void create(const std::string &name = ""); + void create(const std::string &name); void invite(Being *being); diff --git a/src/net/tmwa/playerhandler.h b/src/net/tmwa/playerhandler.h index bc54834f1..8aab78738 100644 --- a/src/net/tmwa/playerhandler.h +++ b/src/net/tmwa/playerhandler.h @@ -42,7 +42,7 @@ class PlayerHandler final : public MessageHandler, public Ea::PlayerHandler void handleMessage(Net::MessageIn &msg); - void attack(int id, bool keep = false); + void attack(int id, bool keep); void stopAttack(); void emote(uint8_t emoteId); @@ -51,7 +51,7 @@ class PlayerHandler final : public MessageHandler, public Ea::PlayerHandler void pickUp(const FloorItem *floorItem); void setDirection(unsigned char direction); - void setDestination(int x, int y, int direction = -1); + void setDestination(int x, int y, int direction); void changeAction(Being::Action action); void processOnlineList(Net::MessageIn &msg); void requestOnlineList(); -- cgit v1.2.3-60-g2f50