diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2014-10-14 18:16:52 -0300 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2014-10-14 18:16:52 -0300 |
commit | e9e0ab477728f543efa78a04411057aed6c6c1e5 (patch) | |
tree | 54ff035308ac9656049cd2ecacd6aa5d4963f02b | |
parent | 75d0cbb2e8f737e4c1721285a172618a1af78135 (diff) |
fix tinderboxen with the right sort of brackets.
Change-Id: I13869771890ce5702d64053e7823dd5cedc82a40
-rw-r--r-- | filter/source/graphicfilter/icgm/outact.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/graphicfilter/icgm/outact.cxx b/filter/source/graphicfilter/icgm/outact.cxx index 283b35c5632a..605be09c2e83 100644 --- a/filter/source/graphicfilter/icgm/outact.cxx +++ b/filter/source/graphicfilter/icgm/outact.cxx @@ -28,7 +28,7 @@ CGMOutAct::CGMOutAct( CGM& rCGM ) mpCGM = &rCGM; mnCurrentPage = 0; mnGroupActCount = mnGroupLevel = 0; - mpGroupLevel = new sal_uInt32[CGM_OUTACT_MAX_GROUP_LEVEL] {}; + mpGroupLevel = new sal_uInt32[CGM_OUTACT_MAX_GROUP_LEVEL] (); mpPoints = (Point*)new sal_Int8[ 0x2000 * sizeof( Point ) ]; mpFlags = new sal_uInt8[ 0x2000 ]; |