Skip to content

Commit

Permalink
[WPE] WPE Platform: fix a typo in headless and DRM headers
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=265670

Reviewed by Michael Catanzaro.

Fix copy paste error.

* Source/WebKit/WPEPlatform/wpe/drm/WPEDisplayDRM.h:
* Source/WebKit/WPEPlatform/wpe/drm/WPEViewDRM.h:
* Source/WebKit/WPEPlatform/wpe/headless/WPEDisplayHeadless.h:
* Source/WebKit/WPEPlatform/wpe/headless/WPEViewHeadless.h:

Canonical link: https://commits.webkit.org/271389@main
  • Loading branch information
carlosgcampos committed Dec 1, 2023
1 parent cb2d6fa commit 6ce3724
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Source/WebKit/WPEPlatform/wpe/drm/WPEDisplayDRM.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#ifndef WPEDisplayDRM_h
#define WPEDisplayDRM_h

#if !defined(__WPE_WAYLAND_H_INSIDE__) && !defined(BUILDING_WEBKIT)
#if !defined(__WPE_DRM_H_INSIDE__) && !defined(BUILDING_WEBKIT)
#error "Only <wpe/drm/wpe-drm.h> can be included directly."
#endif

Expand Down
4 changes: 2 additions & 2 deletions Source/WebKit/WPEPlatform/wpe/drm/WPEViewDRM.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#ifndef WPEViewDRM_h
#define WPEViewDRM_h

#if !defined(__WPE_WAYLAND_H_INSIDE__) && !defined(BUILDING_WEBKIT)
#if !defined(__WPE_DRM_H_INSIDE__) && !defined(BUILDING_WEBKIT)
#error "Only <wpe/drm/wpe-drm.h> can be included directly."
#endif

Expand All @@ -43,4 +43,4 @@ WPE_API WPEView *wpe_view_drm_new (WPEDisplayDRM *display);

G_END_DECLS

#endif /* WPEView_h */
#endif /* WPEViewDRM_h */
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#ifndef WPEDisplayHeadless_h
#define WPEDisplayHeadless_h

#if !defined(__WPE_WAYLAND_H_INSIDE__) && !defined(BUILDING_WEBKIT)
#if !defined(__WPE_HEADLESS_H_INSIDE__) && !defined(BUILDING_WEBKIT)
#error "Only <wpe/headless/wpe-headless.h> can be included directly."
#endif

Expand Down
4 changes: 2 additions & 2 deletions Source/WebKit/WPEPlatform/wpe/headless/WPEViewHeadless.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#ifndef WPEViewHeadless_h
#define WPEViewHeadless_h

#if !defined(__WPE_WAYLAND_H_INSIDE__) && !defined(BUILDING_WEBKIT)
#if !defined(__WPE_HEADLESS_H_INSIDE__) && !defined(BUILDING_WEBKIT)
#error "Only <wpe/headless/wpe-headless.h> can be included directly."
#endif

Expand All @@ -43,4 +43,4 @@ WPE_API WPEView *wpe_view_headless_new (WPEDisplayHeadless *display);

G_END_DECLS

#endif /* WPEView_h */
#endif /* WPEViewHeadless_h */

0 comments on commit 6ce3724

Please sign in to comment.