Skip to content

Commit

Permalink
Fix initialisation order compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Harrison committed Jun 26, 2013
1 parent 7c4615a commit 2a9a2cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmyth/mythdialogs.cpp
Expand Up @@ -42,7 +42,7 @@ using namespace std;
MythDialog::MythDialog(MythMainWindow *parent, const char *name, bool setsize)
: QFrame(parent), wmult(0.0), hmult(0.0),
screenwidth(0), screenheight(0), xbase(0), ybase(0),
m_parent(NULL), in_loop(false), rescode(kDialogCodeAccepted)
m_parent(NULL), rescode(kDialogCodeAccepted), in_loop(false)
{
setObjectName(name);
if (!parent)
Expand Down

0 comments on commit 2a9a2cd

Please sign in to comment.