From: Vadim Zeitlin Date: Sat, 18 Feb 2006 18:16:57 +0000 (+0000) Subject: gcc initializer order fix warning (patch 1432835) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f3a69d1df159eec7f8fcaa9e92aa3f61f0785244 gcc initializer order fix warning (patch 1432835) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37631 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/ole/activex.cpp b/src/msw/ole/activex.cpp index 7f23874d09..176fc6673f 100644 --- a/src/msw/ole/activex.cpp +++ b/src/msw/ole/activex.cpp @@ -691,7 +691,7 @@ private: public: wxActiveXEvents(wxActiveXContainer *ax) : m_activeX(ax), m_haveCustomId(false) {} - wxActiveXEvents(wxActiveXContainer *ax, REFIID iid) : m_activeX(ax), m_haveCustomId(true), m_customId(iid) {} + wxActiveXEvents(wxActiveXContainer *ax, REFIID iid) : m_activeX(ax), m_customId(iid), m_haveCustomId(true) {} virtual ~wxActiveXEvents() { }