From f3a69d1df159eec7f8fcaa9e92aa3f61f0785244 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 18 Feb 2006 18:16:57 +0000 Subject: [PATCH] gcc initializer order fix warning (patch 1432835) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37631 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/ole/activex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() { } -- 2.45.2