⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 94015 in webkit


Ignore:
Timestamp:
Aug 29, 2011, 2:12:17 PM (15 years ago)
Author:
Martin Robinson
Message:

Merging r90368

Location:
releases/WebKitGTK/webkit-1.4/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-1.4/Source/WebCore/ChangeLog

    r94012 r94015  
     12011-08-29  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [GTK] r90148 did not apply to X11 platforms in WebKit1
     6        https://bugs.webkit.org/show_bug.cgi?id=63862
     7
     8        Correct the guard for an X11 specific piece of code. TARGET(X11) not
     9        defined for the GTK+ port.
     10
     11        No new tests. This is covered by an existing test.
     12
     13        * plugins/npapi.cpp: Correct the X11 guard.
     14        (NPN_InvalidateRect):
     15
    1162011-08-29  Martin Robinson  <mrobinson@igalia.com>
    217
  • releases/WebKitGTK/webkit-1.4/Source/WebCore/plugins/npapi.cpp

    r90150 r94015  
    123123{
    124124    PluginView* view = pluginViewForInstance(instance);
    125 #if defined(TARGET_X11)
     125#if defined(XP_UNIX)
    126126    // NSPluginWrapper, a plugin wrapper binary that allows running 32-bit plugins
    127127    // on 64-bit architectures typically used in X11, will sometimes give us a null NPP here.
Note: See TracChangeset for help on using the changeset viewer.