diff options
-rw-r--r-- | sc/source/core/tool/token.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx index b1dbdcdd869e..da787e1858be 100644 --- a/sc/source/core/tool/token.cxx +++ b/sc/source/core/tool/token.cxx @@ -448,7 +448,9 @@ static ScSingleRefData lcl_ScToken_InitSingleRef() { ScSingleRefData aRef; aRef.InitAddress( ScAddress() ); - aRef.nRelCol = aRef.nRelRow = aRef.nRelTab = 0; + aRef.nRelCol = 0; + aRef.nRelRow = 0; + aRef.nRelTab = 0; return aRef; } |