Changeset 31387

Show
Ignore:
Timestamp:
03/27/08 22:49:54 (8 months ago)
Author:
kevino@webkit.org
Message:

wx build fix. Return a default value for operator == when !USE(WXGC) (not implemented in that case).

Location:
trunk/WebCore
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r31386 r31387  
     12008-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 
    192008-03-27  Maciej Stachowiak  <mjs@apple.com> 
    210 
  • trunk/WebCore/platform/graphics/wx/AffineTransformWx.cpp

    r29833 r31387  
    133133#if USE(WXGC) 
    134134    return m_transform.IsEqual((wxGraphicsMatrix)other); 
     135#else 
     136    notImplemented(); 
     137    return true; 
    135138#endif 
    136139}