Changeset 96581 in webkit


Ignore:
Timestamp:
Oct 4, 2011 3:07:39 AM (13 years ago)
Author:
ryuan.choi@samsung.com
Message:

[EFL] Implement declared but missing functions.
https://bugs.webkit.org/show_bug.cgi?id=65368

Unreviewed build fix for WebKit/Efl builds after r96566.

  • platform/efl/CursorEfl.cpp:

(WebCore::Cursor::operator=):

  • platform/efl/LocalizedStringsEfl.cpp:

(WebCore::localizedString):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r96580 r96581  
     12011-10-04  Ryuan Choi  <ryuan.choi@samsung.com>
     2
     3        [EFL] Implement declared but missing functions.
     4        https://bugs.webkit.org/show_bug.cgi?id=65368
     5
     6        Unreviewed build fix for WebKit/Efl builds after r96566.
     7
     8        * platform/efl/CursorEfl.cpp:
     9        (WebCore::Cursor::operator=):
     10        * platform/efl/LocalizedStringsEfl.cpp:
     11        (WebCore::localizedString):
     12
    1132011-10-04  Pavel Feldman  <pfeldman@google.com>
    214
  • trunk/Source/WebCore/platform/efl/CursorEfl.cpp

    r95901 r96581  
    5454Cursor::~Cursor()
    5555{
     56}
     57
     58Cursor& Cursor::operator=(const Cursor& other)
     59{
     60    m_type = other.m_type;
     61    m_image = other.m_image;
     62    m_hotSpot = other.m_hotSpot;
     63    m_platformCursor = other.m_platformCursor;
     64    return *this;
    5665}
    5766
  • trunk/Source/WebCore/platform/efl/LocalizedStringsEfl.cpp

    r95901 r96581  
    546546}
    547547
    548 }
     548String localizedString(const char* key)
     549{
     550    return String::fromUTF8(key, strlen(key));
     551}
     552
     553}
Note: See TracChangeset for help on using the changeset viewer.