| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 2 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 SVGCharacterData data; | 225 SVGCharacterData data; |
| 226 data.rotate = lastRotation; | 226 data.rotate = lastRotation; |
| 227 m_characterDataMap.set(position.start + i + 1, data); | 227 m_characterDataMap.set(position.start + i + 1, data); |
| 228 continue; | 228 continue; |
| 229 } | 229 } |
| 230 | 230 |
| 231 it->value.rotate = lastRotation; | 231 it->value.rotate = lastRotation; |
| 232 } | 232 } |
| 233 } | 233 } |
| 234 | 234 |
| 235 SVGTextLayoutAttributesBuilder::TextPosition::TextPosition(SVGTextPositioningEle
ment* newElement, unsigned newStart, unsigned newLength) | |
| 236 : element(newElement) | |
| 237 , start(newStart) | |
| 238 , length(newLength) | |
| 239 { | |
| 240 } | |
| 241 | |
| 242 DEFINE_TRACE(SVGTextLayoutAttributesBuilder::TextPosition) | 235 DEFINE_TRACE(SVGTextLayoutAttributesBuilder::TextPosition) |
| 243 { | 236 { |
| 244 visitor->trace(element); | 237 visitor->trace(element); |
| 245 } | 238 } |
| 246 | 239 |
| 247 } | 240 } |
| OLD | NEW |