Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(genericchatitemwidget, micfeedbackwidget): Added members init in …
Browse files Browse the repository at this point in the history
…the constructor
  • Loading branch information
Diadlo committed Apr 20, 2016
1 parent 910c41f commit 27faec9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/widget/genericchatitemwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <QVariant>

GenericChatItemWidget::GenericChatItemWidget(QWidget *parent)
: QFrame(parent)
: QFrame(parent), compact(false)
{
setProperty("compact", Settings::getInstance().getCompactLayout());

Expand Down
2 changes: 1 addition & 1 deletion src/widget/tool/micfeedbackwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <QLinearGradient>

MicFeedbackWidget::MicFeedbackWidget(QWidget *parent)
: QWidget(parent)
: QWidget(parent), mMeterListener(nullptr)
{
setFixedHeight(20);
}
Expand Down

0 comments on commit 27faec9

Please sign in to comment.