Changeset 259754 in webkit
- Timestamp:
- Apr 8, 2020, 1:54:14 PM (6 years ago)
- Location:
- trunk/Source
- Files:
-
- 4 edited
-
WTF/ChangeLog (modified) (1 diff)
-
WTF/wtf/Platform.h (modified) (1 diff)
-
WebCore/PAL/ChangeLog (modified) (1 diff)
-
WebCore/PAL/pal/system/gtk/SoundGtk.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r259711 r259754 1 2020-04-08 Adrian Perez de Castro <aperez@igalia.com> 2 3 [GTK4] Make PAL::systemBeep() work 4 https://bugs.webkit.org/show_bug.cgi?id=210158 5 6 Reviewed by Carlos Garcia Campos. 7 8 * wtf/Platform.h: Define a value for GDK_VERSION_MIN_REQUIRED suitable for GTK4. 9 1 10 2020-04-08 Tim Horton <timothy_horton@apple.com> 2 11 -
trunk/Source/WTF/wtf/Platform.h
r258498 r259754 85 85 #if PLATFORM(GTK) 86 86 #define GLIB_VERSION_MIN_REQUIRED GLIB_VERSION_2_36 87 #if USE(GTK4) 88 #define GDK_VERSION_MIN_REQUIRED GDK_VERSION_3_92 89 #else 87 90 #define GDK_VERSION_MIN_REQUIRED GDK_VERSION_3_6 91 #endif 88 92 #endif 89 93 -
trunk/Source/WebCore/PAL/ChangeLog
r259641 r259754 1 2020-04-08 Adrian Perez de Castro <aperez@igalia.com> 2 3 [GTK4] Make PAL::systemBeep() work 4 https://bugs.webkit.org/show_bug.cgi?id=210158 5 6 Reviewed by Carlos Garcia Campos. 7 8 * pal/system/gtk/SoundGtk.cpp: 9 (PAL::systemBeep): Use gdk_display_beep(), which works both with GTK3 and GTK4. 10 1 11 2020-04-07 Adrian Perez de Castro <aperez@igalia.com> 2 12 -
trunk/Source/WebCore/PAL/pal/system/gtk/SoundGtk.cpp
r218999 r259754 27 27 void systemBeep() 28 28 { 29 gdk_beep(); 29 if (auto* display = gdk_display_get_default()) 30 gdk_display_beep(display); 30 31 } 31 32
Note:
See TracChangeset
for help on using the changeset viewer.