diff options
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/gui/guildtab.cpp | 4 | ||||
-rw-r--r-- | src/net/eathena/gui/guildtab.h | 2 | ||||
-rw-r--r-- | src/net/eathena/gui/partytab.cpp | 4 | ||||
-rw-r--r-- | src/net/eathena/gui/partytab.h | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/src/net/eathena/gui/guildtab.cpp b/src/net/eathena/gui/guildtab.cpp index 387cb9446..862b3cd91 100644 --- a/src/net/eathena/gui/guildtab.cpp +++ b/src/net/eathena/gui/guildtab.cpp @@ -41,8 +41,8 @@ namespace EAthena { -GuildTab::GuildTab() : - Ea::GuildTab() +GuildTab::GuildTab(const Widget2 *const widget) : + Ea::GuildTab(widget) { } diff --git a/src/net/eathena/gui/guildtab.h b/src/net/eathena/gui/guildtab.h index e751e19ac..946857fff 100644 --- a/src/net/eathena/gui/guildtab.h +++ b/src/net/eathena/gui/guildtab.h @@ -34,7 +34,7 @@ namespace EAthena class GuildTab : public Ea::GuildTab { public: - GuildTab(); + GuildTab(const Widget2 *const widget); A_DELETE_COPY(GuildTab) diff --git a/src/net/eathena/gui/partytab.cpp b/src/net/eathena/gui/partytab.cpp index 57a0bf8c1..89682e1eb 100644 --- a/src/net/eathena/gui/partytab.cpp +++ b/src/net/eathena/gui/partytab.cpp @@ -44,8 +44,8 @@ namespace EAthena { -PartyTab::PartyTab() : - Ea::PartyTab() +PartyTab::PartyTab(const Widget2 *const widget) : + Ea::PartyTab(widget) { } diff --git a/src/net/eathena/gui/partytab.h b/src/net/eathena/gui/partytab.h index 621ebfc9e..ce9a46564 100644 --- a/src/net/eathena/gui/partytab.h +++ b/src/net/eathena/gui/partytab.h @@ -34,7 +34,7 @@ namespace EAthena class PartyTab : public Ea::PartyTab { public: - PartyTab(); + PartyTab(const Widget2 *const widget); A_DELETE_COPY(PartyTab) |