summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-11-09 11:28:35 +0000
committerMatthias Clasen <mclasen@redhat.com>2021-11-09 11:28:35 +0000
commit9f2dbf4fc571e6804b1f7d67b5f2b9e0e587210f (patch)
treeccc7b39ea9fcff26dace3b67da330e3536bef54d /docs
parent235b0482dd69512fce72b4951c92c92e0fe31779 (diff)
parent0632e94e68f5ef71923953553b5e544e47c9621c (diff)
downloadgtk+-9f2dbf4fc571e6804b1f7d67b5f2b9e0e587210f.tar.gz
Merge branch 'master' into 'master'
Fix typos See merge request GNOME/gtk!4132
Diffstat (limited to 'docs')
-rw-r--r--docs/reference/gdk/macos.md2
-rw-r--r--docs/reference/gdk/wayland.md2
-rw-r--r--docs/reference/gdk/x11.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/reference/gdk/macos.md b/docs/reference/gdk/macos.md
index 1a0429be9d..05d1fbbbbe 100644
--- a/docs/reference/gdk/macos.md
+++ b/docs/reference/gdk/macos.md
@@ -33,7 +33,7 @@ calls to different backends, and error out on unsupported windowing systems:
else
#endif
#ifdef GDK_WINDOWING_WAYLAND
- if (GTK_IS_WAYLAND_DISPLAY (display))
+ if (GDK_IS_WAYLAND_DISPLAY (display))
{
// make Wayland-specific calls here
}
diff --git a/docs/reference/gdk/wayland.md b/docs/reference/gdk/wayland.md
index 040e96a4e9..470b7bbcf9 100644
--- a/docs/reference/gdk/wayland.md
+++ b/docs/reference/gdk/wayland.md
@@ -23,7 +23,7 @@ calls to different backends, and error out on unsupported windowing systems:
#endif
#ifdef GDK_WINDOWING_WAYLAND
- if (GTK_IS_WAYLAND_DISPLAY (display))
+ if (GDK_IS_WAYLAND_DISPLAY (display))
{
// make Wayland-specific calls here
}
diff --git a/docs/reference/gdk/x11.md b/docs/reference/gdk/x11.md
index 6602e24b82..ee4f173d8c 100644
--- a/docs/reference/gdk/x11.md
+++ b/docs/reference/gdk/x11.md
@@ -29,7 +29,7 @@ calls to different backends, and error out on unsupported windowing systems:
else
#endif
#ifdef GDK_WINDOWING_WAYLAND
- if (GTK_IS_WAYLAND_DISPLAY (display))
+ if (GDK_IS_WAYLAND_DISPLAY (display))
{
// make Wayland-specific calls here
}