Changeset 260418 in webkit


Ignore:
Timestamp:
Apr 21, 2020 1:38:23 AM (4 years ago)
Author:
Claudio Saavedra
Message:

[GTK4] Fix platform GDK includes
https://bugs.webkit.org/show_bug.cgi?id=210746

Reviewed by Carlos Garcia Campos.

  • platform/graphics/PlatformDisplay.cpp: Wayland, X11, etc.

platform includes changed path, so update accordingly.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r260417 r260418  
     12020-04-21  Claudio Saavedra  <csaavedra@igalia.com>
     2
     3        [GTK4] Fix platform GDK includes
     4        https://bugs.webkit.org/show_bug.cgi?id=210746
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * platform/graphics/PlatformDisplay.cpp: Wayland, X11, etc.
     9        platform includes changed path, so update accordingly.
     10
    1112020-04-21  Adrian Perez de Castro  <aperez@igalia.com>
    212
  • trunk/Source/WebCore/platform/graphics/PlatformDisplay.cpp

    r260132 r260418  
    5252
    5353#if PLATFORM(GTK) && PLATFORM(X11)
     54#if USE(GTK4)
     55#include <gdk/x11/gdkx.h>
     56#else
    5457#include <gdk/gdkx.h>
     58#endif
    5559#if defined(None)
    5660#undef None
     
    5963
    6064#if PLATFORM(GTK) && PLATFORM(WAYLAND)
     65#if USE(GTK4)
     66#include <gdk/wayland/gdkwayland.h>
     67#else
    6168#include <gdk/gdkwayland.h>
     69#endif
    6270#endif
    6371
Note: See TracChangeset for help on using the changeset viewer.