[vlc-commits] webplugins: fix order of member initialization in VLCHolderWnd constructor

Rafaël Carré git at videolan.org
Sat Nov 12 18:29:05 CET 2011


npapi-vlc | branch: master | Rafaël Carré <funman at videolan.org> | Sat Nov 12 12:08:15 2011 -0500| [0564aca60214ae854515f8b4a2fea50c08febb98] | committer: Rafaël Carré

webplugins: fix order of member initialization in VLCHolderWnd constructor

> http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=0564aca60214ae854515f8b4a2fea50c08febb98
---

 common/win32_fullscreen.h |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/common/win32_fullscreen.h b/common/win32_fullscreen.h
index 67eba61..3f913a0 100644
--- a/common/win32_fullscreen.h
+++ b/common/win32_fullscreen.h
@@ -58,8 +58,9 @@ private:
 
 private:
     VLCHolderWnd(HWND hWnd, VLCWindowsManager* WM)
-        :_hWnd(hWnd), _WindowsManager(WM), _p_md(0),
-         _hMouseHook(NULL), _LibVlcESAttached(false){};
+        : _hMouseHook(NULL), _hWnd(hWnd)
+         , _WindowsManager(WM), _p_md(0)
+         , _LibVlcESAttached(false){};
 
 public:
     HWND getHWND() const {return _hWnd;}



More information about the vlc-commits mailing list