You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by pa...@apache.org on 2012/02/15 17:29:32 UTC

svn commit: r1244571 - /incubator/ooo/trunk/main/scripting/source/vbaevents/eventhelper.cxx

Author: paveljanik
Date: Wed Feb 15 16:29:32 2012
New Revision: 1244571

URL: http://svn.apache.org/viewvc?rev=1244571&view=rev
Log:
Change order of initialization to prevent WaE issue.

Modified:
    incubator/ooo/trunk/main/scripting/source/vbaevents/eventhelper.cxx

Modified: incubator/ooo/trunk/main/scripting/source/vbaevents/eventhelper.cxx
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/scripting/source/vbaevents/eventhelper.cxx?rev=1244571&r1=1244570&r2=1244571&view=diff
==============================================================================
--- incubator/ooo/trunk/main/scripting/source/vbaevents/eventhelper.cxx (original)
+++ incubator/ooo/trunk/main/scripting/source/vbaevents/eventhelper.cxx Wed Feb 15 16:29:32 2012
@@ -700,8 +700,8 @@ private:
 
     Reference< XComponentContext > m_xContext;
     Reference< frame::XModel > m_xModel;
-    SfxObjectShell* mpShell;
     sal_Bool m_bDocClosed;
+    SfxObjectShell* mpShell;
     
 };