Changeset 62974 in webkit


Ignore:
Timestamp:
Jul 9, 2010 11:51:09 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-07-09 Patrick Gansterer <paroga@paroga.com>

Reviewed by Kent Tamura.

[WINCE] Buildfix for EventHandlerWin
https://bugs.webkit.org/show_bug.cgi?id=41909

Use Clipboard.h instead of ClipboardWin.h on WinCE.

  • page/win/EventHandlerWin.cpp:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r62972 r62974  
     12010-07-09  Patrick Gansterer  <paroga@paroga.com>
     2
     3        Reviewed by Kent Tamura.
     4
     5        [WINCE] Buildfix for EventHandlerWin
     6        https://bugs.webkit.org/show_bug.cgi?id=41909
     7
     8        Use Clipboard.h instead of ClipboardWin.h on WinCE.
     9
     10        * page/win/EventHandlerWin.cpp:
     11
    1122010-07-09  Sheriff Bot  <webkit.review.bot@gmail.com>
    213
  • trunk/WebCore/page/win/EventHandlerWin.cpp

    r52791 r62974  
    2828#include "EventHandler.h"
    2929
    30 #include "ClipboardWin.h"
    3130#include "Cursor.h"
    3231#include "FloatPoint.h"
     
    4443#include "WCDataObject.h"
    4544#include "NotImplemented.h"
     45
     46#if OS(WINCE)
     47#include "Clipboard.h"
     48#else
     49#include "ClipboardWin.h"
     50#endif
    4651
    4752namespace WebCore {
Note: See TracChangeset for help on using the changeset viewer.