mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-10 04:16:43 -07:00
Fix uninitialized variable
This commit is contained in:
parent
c416248e9b
commit
9f6b5d4895
1 changed files with 1 additions and 1 deletions
|
|
@ -876,6 +876,6 @@ void MessageLogWidget::connectToPlayer(Player *player)
|
|||
}
|
||||
|
||||
MessageLogWidget::MessageLogWidget(const TabSupervisor *_tabSupervisor, TabGame *_game, QWidget *parent)
|
||||
: ChatView(_tabSupervisor, _game, false, parent)
|
||||
: ChatView(_tabSupervisor, _game, false, parent), currentContext(MessageContext_None)
|
||||
{
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue