Remove unused wxDisplayImpl::GetSizeMM()
This is not needed any longer after the changes of the last commit. Note that the (still existent) public wxGetDisplaySizeMM() didn't use this function, but used PPI instead.
This commit is contained in:
@@ -22,7 +22,6 @@ public:
|
||||
virtual wxRect GetGeometry() const wxOVERRIDE;
|
||||
virtual wxRect GetClientArea() const wxOVERRIDE;
|
||||
virtual int GetDepth() const wxOVERRIDE;
|
||||
virtual wxSize GetSizeMM() const wxOVERRIDE;
|
||||
|
||||
#if wxUSE_DISPLAY
|
||||
virtual wxArrayVideoModes GetModes(const wxVideoMode& mode) const wxOVERRIDE;
|
||||
@@ -51,13 +50,6 @@ int wxDisplayImplQt::GetDepth() const
|
||||
return IsPrimary() ? QApplication::desktop()->depth() : 0;
|
||||
}
|
||||
|
||||
wxSize wxDisplayImplQt::GetSizeMM() const
|
||||
{
|
||||
return IsPrimary() ? wxSize(QApplication::desktop()->widthMM(),
|
||||
QApplication::desktop()->heightMM())
|
||||
: wxSize(0, 0);
|
||||
}
|
||||
|
||||
#if wxUSE_DISPLAY
|
||||
wxArrayVideoModes wxDisplayImplQt::GetModes(const wxVideoMode& WXUNUSED(mode)) const
|
||||
{
|
||||
|
Reference in New Issue
Block a user