Changeset 52571 in webkit


Ignore:
Timestamp:
Dec 27, 2009 12:32:01 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-27 Patrick Gansterer <paroga@paroga.com>

Reviewed by Adam Barth.

WinCE buildfix (HWND_MESSAGE isn't supported there)

  • wtf/win/MainThreadWin.cpp: (WTF::initializeMainThreadPlatform):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r52570 r52571  
     12009-12-27  Patrick Gansterer  <paroga@paroga.com>
     2
     3        Reviewed by Adam Barth.
     4
     5        WinCE buildfix (HWND_MESSAGE isn't supported there)
     6
     7        * wtf/win/MainThreadWin.cpp:
     8        (WTF::initializeMainThreadPlatform):
     9
    1102009-12-27  Patrick Gansterer  <paroga@paroga.com>
    211
  • trunk/JavaScriptCore/wtf/win/MainThreadWin.cpp

    r45924 r52571  
    5757        return;
    5858
     59    HWND hWndParent = 0;
    5960#if PLATFORM(WINCE)
    6061    WNDCLASS wcex;
     
    7172#else
    7273    RegisterClassEx(&wcex);
     74    hWndParent = HWND_MESSAGE;
    7375#endif
    7476
    7577    threadingWindowHandle = CreateWindow(kThreadingWindowClassName, 0, 0,
    76        CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, HWND_MESSAGE, 0, 0, 0);
     78       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, hWndParent, 0, 0, 0);
    7779    threadingFiredMessage = RegisterWindowMessage(L"com.apple.WebKit.MainThreadFired");
    7880}
Note: See TracChangeset for help on using the changeset viewer.