Remove unnecessary trivial wxDisplayFactoryQt default ctor
No real changes, just remove useless lines.
This commit is contained in:
@@ -67,18 +67,11 @@ bool wxDisplayImplQt::ChangeMode(const wxVideoMode& WXUNUSED(mode))
|
|||||||
class wxDisplayFactoryQt : public wxDisplayFactory
|
class wxDisplayFactoryQt : public wxDisplayFactory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxDisplayFactoryQt();
|
|
||||||
|
|
||||||
virtual wxDisplayImpl *CreateDisplay(unsigned n) wxOVERRIDE;
|
virtual wxDisplayImpl *CreateDisplay(unsigned n) wxOVERRIDE;
|
||||||
virtual unsigned GetCount() wxOVERRIDE;
|
virtual unsigned GetCount() wxOVERRIDE;
|
||||||
virtual int GetFromPoint(const wxPoint& pt) wxOVERRIDE;
|
virtual int GetFromPoint(const wxPoint& pt) wxOVERRIDE;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
wxDisplayFactoryQt::wxDisplayFactoryQt()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
wxDisplayImpl *wxDisplayFactoryQt::CreateDisplay(unsigned n)
|
wxDisplayImpl *wxDisplayFactoryQt::CreateDisplay(unsigned n)
|
||||||
{
|
{
|
||||||
return new wxDisplayImplQt( n );
|
return new wxDisplayImplQt( n );
|
||||||
|
Reference in New Issue
Block a user