diff options
author | Benjamin Otte <otte@redhat.com> | 2020-05-17 05:58:20 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2020-05-17 07:32:37 +0200 |
commit | 4c7914dc493d14da8692a52aa86846a6588f0189 (patch) | |
tree | 06130136d19e364b5131377e1fec76099b187eb7 /gdk/gdkmonitor.c | |
parent | 9a30019268b3ae98a200ffc45213f6db63e2ab07 (diff) | |
download | gtk+-4c7914dc493d14da8692a52aa86846a6588f0189.tar.gz |
display: Remove unneeded getters
Applications can use the listmodel instead.
Diffstat (limited to 'gdk/gdkmonitor.c')
-rw-r--r-- | gdk/gdkmonitor.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gdk/gdkmonitor.c b/gdk/gdkmonitor.c index 3e4b3180a0..5157caea0a 100644 --- a/gdk/gdkmonitor.c +++ b/gdk/gdkmonitor.c @@ -31,10 +31,9 @@ * @Short_description: Object representing an output * * GdkMonitor objects represent the individual outputs that are - * associated with a #GdkDisplay. GdkDisplay has APIs to enumerate - * monitors with gdk_display_get_n_monitors() and gdk_display_get_monitor(), and - * to find particular monitors with gdk_display_get_primary_monitor() or - * gdk_display_get_monitor_at_surface(). + * associated with a #GdkDisplay. GdkDisplay keeps a #GListModel to enumerate + * and monitor monitors with gdk_display_get_monitors(). + * You can use gdk_display_get_monitor_at_surface() to find a particular monitor. */ /** |