| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 2 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
| 3 * Copyright (C) 2007 Apple Inc. | 3 * Copyright (C) 2007 Apple Inc. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 graphicsContext.restore(); | 374 graphicsContext.restore(); |
| 375 | 375 |
| 376 currentHeight += pageSizeInPixels.height() + 1; | 376 currentHeight += pageSizeInPixels.height() + 1; |
| 377 } | 377 } |
| 378 | 378 |
| 379 graphicsContext.restore(); | 379 graphicsContext.restore(); |
| 380 } | 380 } |
| 381 | 381 |
| 382 void PrintContext::trace(Visitor* visitor) | 382 void PrintContext::trace(Visitor* visitor) |
| 383 { | 383 { |
| 384 #if ENABLE(OILPAN) |
| 384 visitor->trace(m_linkedDestinations); | 385 visitor->trace(m_linkedDestinations); |
| 386 #endif |
| 385 } | 387 } |
| 386 | 388 |
| 387 } | 389 } |
| OLD | NEW |