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/09/25 15:00:32 UTC

svn commit: r1389843 - /incubator/ooo/trunk/main/sc/source/core/tool/interpr4.cxx

Author: paveljanik
Date: Tue Sep 25 13:00:32 2012
New Revision: 1389843

URL: http://svn.apache.org/viewvc?rev=1389843&view=rev
Log:
Reorder initialization to prevent warnings.

Modified:
    incubator/ooo/trunk/main/sc/source/core/tool/interpr4.cxx

Modified: incubator/ooo/trunk/main/sc/source/core/tool/interpr4.cxx
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/sc/source/core/tool/interpr4.cxx?rev=1389843&r1=1389842&r2=1389843&view=diff
==============================================================================
--- incubator/ooo/trunk/main/sc/source/core/tool/interpr4.cxx (original)
+++ incubator/ooo/trunk/main/sc/source/core/tool/interpr4.cxx Tue Sep 25 13:00:32 2012
@@ -3299,9 +3299,9 @@ ScInterpreter::ScInterpreter( ScFormulaC
     pTokenMatrixMap( NULL ),
     pMyFormulaCell( pCell ),
     pFormatter( pDoc->GetFormatTable() ),
-    mnStringNoValueError( errNoValue),
     pLastStackRefToken( NULL ),
     bRefFunc( false ),
+    mnStringNoValueError( errNoValue ),
     bCalcAsShown( pDoc->GetDocOptions().IsCalcAsShown() )
 {
     RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "sc", "er", "ScInterpreter::ScTTT" );