diff options
Diffstat (limited to 'gdk/gdkdisplay.c')
-rw-r--r-- | gdk/gdkdisplay.c | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/gdk/gdkdisplay.c b/gdk/gdkdisplay.c index c2a9e26bf7..5eb928bd0c 100644 --- a/gdk/gdkdisplay.c +++ b/gdk/gdkdisplay.c @@ -155,12 +155,6 @@ gdk_display_real_get_default_seat (GdkDisplay *display) return display->seats->data; } -static GdkMonitor * -gdk_display_real_get_primary_monitor (GdkDisplay *display) -{ - return gdk_display_get_monitor (display, 0); -} - static void gdk_display_class_init (GdkDisplayClass *class) { @@ -177,8 +171,6 @@ gdk_display_class_init (GdkDisplayClass *class) class->event_data_free = gdk_display_real_event_data_free; class->get_default_seat = gdk_display_real_get_default_seat; - class->get_primary_monitor = gdk_display_real_get_primary_monitor; - /** * GdkDisplay:composited: * @@ -1589,32 +1581,6 @@ gdk_display_get_monitor (GdkDisplay *display, } /** - * gdk_display_get_primary_monitor: - * @display: a #GdkDisplay - * - * Gets the primary monitor for the display. - * - * The primary monitor is considered the monitor where the “main desktop” - * lives. While normal application surfaces typically allow the window - * manager to place the surfaces, specialized desktop applications - * such as panels should place themselves on the primary monitor. - * - * If no monitor is the designated primary monitor, any monitor - * (usually the first) may be returned. To make sure there is a dedicated - * primary monitor, use gdk_monitor_is_primary() on the returned monitor. - * - * Returns: (transfer none): the primary monitor, or any monitor if no - * primary monitor is configured by the user - */ -GdkMonitor * -gdk_display_get_primary_monitor (GdkDisplay *display) -{ - g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL); - - return GDK_DISPLAY_GET_CLASS (display)->get_primary_monitor (display); -} - -/** * gdk_display_get_monitor_at_surface: * @display: a #GdkDisplay * @surface: a #GdkSurface |