You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by af...@apache.org on 2014/03/05 12:51:35 UTC

svn commit: r1574449 - /openoffice/trunk/main/sc/inc/refdata.hxx

Author: af
Date: Wed Mar  5 11:51:34 2014
New Revision: 1574449

URL: http://svn.apache.org/r1574449
Log:
124361: Avoid warning by not assigning from sal_Int32 to sal_Int16.

Modified:
    openoffice/trunk/main/sc/inc/refdata.hxx

Modified: openoffice/trunk/main/sc/inc/refdata.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sc/inc/refdata.hxx?rev=1574449&r1=1574448&r2=1574449&view=diff
==============================================================================
--- openoffice/trunk/main/sc/inc/refdata.hxx (original)
+++ openoffice/trunk/main/sc/inc/refdata.hxx Wed Mar  5 11:51:34 2014
@@ -78,7 +78,7 @@ struct SC_DLLPUBLIC ScSingleRefData     
     inline  void InitFlags() { bFlags = 0; }    // all FALSE
 
     // #123870# Make it possible to init members to some defined values
-    inline void InitMembers() { nCol = nRow = nTab = nRelCol = nRelRow = nRelTab = 0; }
+    inline void InitMembers() { nRow = nRelRow = 0; nCol = nRelCol = 0; nTab = nRelTab = 0; }
 
     // InitAddress: InitFlags and set address
     inline  void InitAddress( const ScAddress& rAdr );