// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "display.h"
#endif
}
else
{
- return 0;
+ wxSize size = wxGetDisplaySize();
+ if (p.x >= 0 &&
+ p.x <= size.GetWidth() &&
+ p.y > 0 &&
+ p.y <= size.GetHeight())
+ {
+ return 0;
+ }
+
+ return -1
}
}
wxString wxDisplay::GetName() const
{
- return "";
+ return wxEmptyString;
}
#endif /* wxUSE_DISPLAY */