Skip to content

Commit

Permalink
Merge PR #2932: Overlay_win: Fix "m_active" variable order
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrautz committed Mar 14, 2017
2 parents 9de6718 + e284bcc commit 2667fe4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mumble/Overlay_win.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ static bool canRun64BitPrograms() {


OverlayPrivateWin::OverlayPrivateWin(QObject *p) OverlayPrivateWin::OverlayPrivateWin(QObject *p)
: OverlayPrivate(p) : OverlayPrivate(p)
, m_active(false)
, m_helper_enabled(true) , m_helper_enabled(true)
, m_helper64_enabled(true) , m_helper64_enabled(true)
, m_mumble_handle(0) { , m_mumble_handle(0)
, m_active(false) {


// Acquire a handle to ourselves and duplicate it. We duplicate it because // Acquire a handle to ourselves and duplicate it. We duplicate it because
// want it to be inheritable by our helper processes, and the handle returned // want it to be inheritable by our helper processes, and the handle returned
Expand Down

0 comments on commit 2667fe4

Please sign in to comment.