Remove wxDisplaySize() implementation from wxGTK1

This is now implemented in common code, in terms of wxDisplay.
This commit is contained in:
Vadim Zeitlin 2018-10-06 15:24:13 +02:00
parent 1614f7337d
commit e834585cf7

View File

@ -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();