Skip to content

Commit

Permalink
Fix unitialized variable warning in BackendSelection.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-kristjansson committed Oct 3, 2012
1 parent 8c8b75e commit 85679e4
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions mythtv/libs/libmyth/backendselect.cpp
Expand Up @@ -12,12 +12,13 @@
#include "mythlogging.h"
#include "mythversion.h"

BackendSelection::BackendSelection(MythScreenStack *parent, DatabaseParams *params,
Configuration *conf, bool exitOnFinish)
: MythScreenType(parent, "BackEnd Selection"),
m_DBparams(params), m_pConfig(conf), m_exitOnFinish(exitOnFinish),
m_backendList(NULL), m_manualButton(NULL), m_saveButton(NULL),
m_cancelButton(NULL)
BackendSelection::BackendSelection(
MythScreenStack *parent, DatabaseParams *params,
Configuration *conf, bool exitOnFinish) :
MythScreenType(parent, "BackEnd Selection"),
m_DBparams(params), m_pConfig(conf), m_exitOnFinish(exitOnFinish),
m_backendList(NULL), m_manualButton(NULL), m_saveButton(NULL),
m_cancelButton(NULL), m_backendDecision(kCancelConfigure)
{
}

Expand Down

0 comments on commit 85679e4

Please sign in to comment.