summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorPavel Janík <paveljanik@apache.org>2013-11-26 20:05:14 +0000
committerPavel Janík <paveljanik@apache.org>2013-11-26 20:05:14 +0000
commitc70ed91694191aed2ebc46fd0e20496b6e0499bb (patch)
treea8ca1021e138ae7176670395980ecd1ed98dc0fd /sc
parentb01b45e9d73a318e983fa5f023d6167218ed2558 (diff)
WaE: reorder initializations to prevent compiler warning.
Notes
Notes: prefer: b41332475783c31136673fb44cf4c411bb0148f8
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/documen2.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx
index bcc0a9dea205..311bbde164c7 100644
--- a/sc/source/core/data/documen2.cxx
+++ b/sc/source/core/data/documen2.cxx
@@ -216,15 +216,15 @@ ScDocument::ScDocument( ScDocumentMode eMode,
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);