Changeset 31387
- Timestamp:
- 03/27/08 22:49:54 (8 months ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
platform/graphics/wx/AffineTransformWx.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r31386 r31387 1 2008-03-27 Kevin Ollivier <kevino@theolliviers.com> 2 3 wx build fix. Return a default value for operator == 4 when !USE(WXGC) (not implemented in that case). 5 6 * platform/graphics/wx/AffineTransformWx.cpp: 7 (WebCore::AffineTransform::operator== ): 8 1 9 2008-03-27 Maciej Stachowiak <mjs@apple.com> 2 10 -
trunk/WebCore/platform/graphics/wx/AffineTransformWx.cpp
r29833 r31387 133 133 #if USE(WXGC) 134 134 return m_transform.IsEqual((wxGraphicsMatrix)other); 135 #else 136 notImplemented(); 137 return true; 135 138 #endif 136 139 }