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/11/29 20:48:44 UTC

svn commit: r1415339 - /openoffice/trunk/main/sw/source/filter/ww8/writerhelper.cxx

Author: paveljanik
Date: Thu Nov 29 19:48:44 2012
New Revision: 1415339

URL: http://svn.apache.org/viewvc?rev=1415339&view=rev
Log:
Reorder initializations to prevent compiler warnings.

Modified:
    openoffice/trunk/main/sw/source/filter/ww8/writerhelper.cxx

Modified: openoffice/trunk/main/sw/source/filter/ww8/writerhelper.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sw/source/filter/ww8/writerhelper.cxx?rev=1415339&r1=1415338&r2=1415339&view=diff
==============================================================================
--- openoffice/trunk/main/sw/source/filter/ww8/writerhelper.cxx (original)
+++ openoffice/trunk/main/sw/source/filter/ww8/writerhelper.cxx Thu Nov 29 19:48:44 2012
@@ -188,11 +188,11 @@ namespace sw
 		maPos(rPos),
 		maSize(),
 		maLayoutSize(),
+		meWriterType(eBulletGrf),
 		mpStartFrameContent(0),
 		mbIsInline(true),
-		meWriterType(eBulletGrf),
-		maGrf(rGrf),
-		mbForBullet(true)
+		mbForBullet(true),
+		maGrf(rGrf)
 	{
 		const MapMode aMap100mm( MAP_100TH_MM );
 		Size    aSize( rGrf.GetPrefSize() );    
@@ -221,8 +221,8 @@ namespace sw
           mbIsInline( (rFmt.GetAnchor().GetAnchorId() == FLY_AS_CHAR) )
           // <--
           //For i120928,handle graphic of bullet within existing implementation
-          ,maGrf()
           ,mbForBullet(false)
+          ,maGrf()
     {
         switch (rFmt.Which())
         {