mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fix uninitialized memory usage error
This commit is contained in:
parent
a196129171
commit
67d9910bd5
|
@ -94,6 +94,12 @@ private:
|
|||
SplitContainer *container_;
|
||||
IndirectChannel channel_;
|
||||
|
||||
bool moderationMode_{};
|
||||
bool isTopRightSplit_{};
|
||||
|
||||
bool isMouseOver_{};
|
||||
bool isDragging_{};
|
||||
|
||||
QVBoxLayout *vbox_;
|
||||
SplitHeader *header_;
|
||||
ChannelView *view_;
|
||||
|
@ -102,12 +108,6 @@ private:
|
|||
|
||||
NullablePtr<SelectChannelDialog> selectChannelDialog_;
|
||||
|
||||
bool moderationMode_{};
|
||||
bool isTopRightSplit_{};
|
||||
|
||||
bool isMouseOver_{};
|
||||
bool isDragging_{};
|
||||
|
||||
pajlada::Signals::Connection channelIDChangedConnection_;
|
||||
pajlada::Signals::Connection usermodeChangedConnection_;
|
||||
pajlada::Signals::Connection roomModeChangedConnection_;
|
||||
|
|
Loading…
Reference in a new issue