diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-09-21 20:39:49 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-09-21 20:40:40 +0200 |
commit | 71b8638b5a9233c13e2bbcaf41f2a4460bd46b4b (patch) | |
tree | 3ab9936f83d03091b9d5a5d5ea1423b7e16b3b7c | |
parent | b57f55cf23ef11d446330fbbadd18803b5cbcc98 (diff) |
fix array initialization and thus windows build
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index 1c56df64987e..b3260ca29eee 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -609,7 +609,7 @@ void Test::testNamedRange() { struct { const char* pName; const char* pExpr; sal_uInt16 nIndex; - } aNames[] { + } aNames[] = { { "Divisor", "$Sheet1.$A$1:$A$1048576", 1 }, { "MyRange1", "$Sheet1.$A$1:$A$100", 2 }, { "MyRange2", "$Sheet1.$B$1:$B$100", 3 }, |