From e834585cf78cbf411eb7f66e6755e4be3257dddd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 6 Oct 2018 15:24:13 +0200 Subject: [PATCH] Remove wxDisplaySize() implementation from wxGTK1 This is now implemented in common code, in terms of wxDisplay. --- src/gtk1/utilsgtk.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/gtk1/utilsgtk.cpp b/src/gtk1/utilsgtk.cpp index c912fc9a9a..9f18a26436 100644 --- a/src/gtk1/utilsgtk.cpp +++ b/src/gtk1/utilsgtk.cpp @@ -86,12 +86,6 @@ void *wxGetDisplay() return GDK_DISPLAY(); } -void wxDisplaySize( int *width, int *height ) -{ - if (width) *width = gdk_screen_width(); - if (height) *height = gdk_screen_height(); -} - void wxDisplaySizeMM( int *width, int *height ) { if (width) *width = gdk_screen_width_mm();