Qt: Fix uninitialized value

This commit is contained in:
Jeffrey Pfau 2014-12-23 23:14:12 -08:00
parent d6def0d407
commit 6656f53f61
1 changed files with 1 additions and 0 deletions

View File

@ -149,6 +149,7 @@ void Display::resizeEvent(QResizeEvent* event) {
Painter::Painter(Display* parent)
: m_gl(parent)
, m_lockAspectRatio(false)
, m_filter(false)
{
m_size = parent->size();
}