Changeset 48138
- Timestamp:
- 09/07/09 16:05:49 (6 months ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
platform/wx/wxcode/mac/carbon/scrollbar_render.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r48137 r48138 1 2009-09-07 Kevin Ollivier <kevino@theolliviers.com> 2 3 wx build fix for 2.8 compilation. 4 5 * platform/wx/wxcode/mac/carbon/scrollbar_render.cpp: 6 (wxRenderer_DrawScrollbar): 7 1 8 2009-09-07 Drew Wilson <atwilson@google.com> 2 9 -
trunk/WebCore/platform/wx/wxcode/mac/carbon/scrollbar_render.cpp
r48125 r48138 72 72 73 73 CGContextRef cgContext; 74 wxGCDC gcdc = static_cast<wxGCDC>(dc); 75 cgContext = (CGContextRef) gcdc.GetGraphicsContext()->GetNativeContext(); 74 #if wxCHECK_VERSION(2,9,0) 75 wxGraphicsContext* gc = static_cast<wxGCDC>(dc).GetGraphicsContext(); 76 #else 77 wxGraphicsContext* gc = dc.GetGraphicsContext(); 78 #endif 79 cgContext = (CGContextRef) gc->GetNativeContext(); 76 80 77 81 {