Changeset 56324 in webkit


Ignore:
Timestamp:
Mar 22, 2010 1:26:01 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-22 Leandro Pereira <leandro@profusion.mobi>

Reviewed by Simon Hausmann.

Add EFL-specific code to platform/Cursor.h.
http://webkit.org/b/36319

  • platform/Cursor.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r56323 r56324  
     12010-03-22  Leandro Pereira  <leandro@profusion.mobi>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        Add EFL-specific code to platform/Cursor.h.
     6        http://webkit.org/b/36319
     7
     8        * platform/Cursor.h:
     9
    1102010-03-22  Leandro Pereira  <leandro@profusion.mobi>
    211
  • trunk/WebCore/platform/Cursor.h

    r55633 r56324  
    8383    typedef GdkCursor* PlatformCursor;
    8484    typedef GdkCursor* PlatformCursorHandle;
     85#elif PLATFORM(EFL)
     86    typedef const char* PlatformCursor;
     87    typedef const char* PlatformCursorHandle;
    8588#elif PLATFORM(QT) && !defined(QT_NO_CURSOR)
    8689    typedef QCursor PlatformCursor;
     
    103106    public:
    104107        Cursor()
    105 #if !PLATFORM(QT)
     108#if !PLATFORM(QT) && !PLATFORM(EFL)
    106109        : m_impl(0)
    107110#endif
Note: See TracChangeset for help on using the changeset viewer.