diff options
author | Pavel Janík <paveljanik@apache.org> | 2014-01-19 18:41:28 +0000 |
---|---|---|
committer | Pavel Janík <paveljanik@apache.org> | 2014-01-19 18:41:28 +0000 |
commit | 1f9d7c4c63b90ddffa2bb975efb61c4ae3221e56 (patch) | |
tree | 98b629c2e905aec9850e7e9dd919c40276f3524a /sc | |
parent | 8f97a74f843edebca2b64cc3649c7a45a6ef3df0 (diff) |
WaE: Reorder initializations to prevent compiler warnings.
Notes
Notes:
prefer: 296cd762c9730ead75767cf7bbc5f5845f18168b
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/view/tabvwsh4.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/tabvwsh4.cxx b/sc/source/ui/view/tabvwsh4.cxx index 78af02ae01e5..93fb8982cc99 100644 --- a/sc/source/ui/view/tabvwsh4.cxx +++ b/sc/source/ui/view/tabvwsh4.cxx @@ -1588,9 +1588,9 @@ FASTBOOL __EXPORT ScTabViewShell::KeyInput( const KeyEvent &rKeyEvent ) pScSbxObject(NULL), \ /*bChartDlgIsEdit(sal_False),*/ \ bChartAreaValid(sal_False), \ - bForceFocusOnCurCell(sal_False), \ nCurRefDlgId(0), \ - pAccessibilityBroadcaster(NULL) + pAccessibilityBroadcaster(NULL), \ + bForceFocusOnCurCell(sal_False) //------------------------------------------------------------------ |