Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
UIType: Fix Coverity ID 746859 Uninitialized scalar field
In UIType::UIType(): Two scalar fields are not initialized by
the constructor. This is depreciated code and will hopefully be
removed soon anyway.
  • Loading branch information
Paul Harrison committed Jun 16, 2013
1 parent b5a1af9 commit dc495b3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mythtv/libs/libmyth/uitypes.cpp
Expand Up @@ -132,6 +132,8 @@ UIType::UIType(const QString &name)
screen_area = QRect(0,0,0,0);
drawFontShadow = true;
hidden = false;
m_wmult = 0.0;
m_hmult = 0.0;
}

void UIType::SetOrder(int order)
Expand Down

0 comments on commit dc495b3

Please sign in to comment.