Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix GCC warning about initialisation order in MythBrowser
  • Loading branch information
stuartm committed Jun 4, 2013
1 parent b298d7d commit 1f8d58e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mythplugins/mythbrowser/mythbrowser/mythbrowser.cpp
Expand Up @@ -21,12 +21,12 @@ using namespace std;
MythBrowser::MythBrowser(MythScreenStack *parent,
QStringList &urlList, float zoom)
: MythScreenType (parent, "mythbrowser"),
m_urlList(urlList), m_pageList(NULL),
m_progressBar(NULL), m_titleText(NULL),
m_statusText(NULL), m_currentBrowser(-1),
m_zoom(zoom), m_menuPopup(NULL),
m_defaultFavIcon(NULL), m_backButton(NULL),
m_forwardButton(NULL), m_exitButton(NULL)
m_urlList(urlList), m_pageList(NULL),
m_progressBar(NULL), m_titleText(NULL),
m_statusText(NULL), m_backButton(NULL),
m_forwardButton(NULL), m_exitButton(NULL),
m_currentBrowser(-1), m_zoom(zoom),
m_menuPopup(NULL), m_defaultFavIcon(NULL)
{
GetMythMainWindow()->PauseIdleTimer(true);
}
Expand Down

0 comments on commit 1f8d58e

Please sign in to comment.