Skip to content

Commit

Permalink
MythFontProperties: fix Coverity ID 700924 Uninitialized scalar field
Browse files Browse the repository at this point in the history
In MythFontProperties::MythFontProperties(): A scalar field is not
initialized by the constructor.
  • Loading branch information
Paul Harrison committed Jun 2, 2013
1 parent 6ef09cc commit 4c17f63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythui/mythfontproperties.cpp
Expand Up @@ -17,8 +17,8 @@

MythFontProperties::MythFontProperties() :
m_brush(QColor(Qt::white)), m_hasShadow(false), m_shadowAlpha(255),
m_hasOutline(false), m_outlineAlpha(255), m_relativeSize(0.05f),
m_bFreeze(false), m_stretch(100)
m_hasOutline(false), m_outlineSize(0), m_outlineAlpha(255),
m_relativeSize(0.05f), m_bFreeze(false), m_stretch(100)
{
CalcHash();
}
Expand Down

0 comments on commit 4c17f63

Please sign in to comment.