Author: paveljanik
Date: Tue Nov 26 20:05:14 2013
New Revision: 1545806
URL: http://svn.apache.org/r1545806
Log:
WaE: reorder initializations to prevent compiler warning.
Modified:
openoffice/trunk/main/sc/source/core/data/documen2.cxx
Modified: openoffice/trunk/main/sc/source/core/data/documen2.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sc/source/core/data/documen2.cxx?rev=1545806&r1=1545805&r2=1545806&view=diff
==============================================================================
--- openoffice/trunk/main/sc/source/core/data/documen2.cxx (original)
+++ openoffice/trunk/main/sc/source/core/data/documen2.cxx Tue Nov 26 20:05:14
2013
@@ -216,15 +216,15 @@ ScDocument::ScDocument( ScDocumentMode e
eGrammar( formula::FormulaGrammar::GRAM_NATIVE ),
bStyleSheetUsageInvalid( sal_True ),
mbUndoEnabled( true ),
-//IAccessibility2 Implementation 2009-----
- bReadOnly(sal_False),
-//-----IAccessibility2 Implementation 2009
mbAdjustHeightEnabled( true ),
mbExecuteLinkEnabled( true ),
mbChangeReadOnlyEnabled( false ),
mbStreamValidLocked( false ),
mbIsTemporary(false), // #118840#
- mnNamedRangesLockCount( 0 )
+ mnNamedRangesLockCount( 0 ),
+//IAccessibility2 Implementation 2009-----
+ bReadOnly(sal_False)
+//-----IAccessibility2 Implementation 2009
{
SetStorageGrammar( formula::FormulaGrammar::GRAM_STORAGE_DEFAULT);