let's place these in the correct spot shall we?

This commit is contained in:
ZachBacon 2018-06-10 12:37:28 -04:00
parent 90d2f5c808
commit 037e3771b1
No known key found for this signature in database
GPG Key ID: D4F6F40B695E615A
1 changed files with 6 additions and 5 deletions

View File

@ -2235,6 +2235,12 @@ void GLDrawingPanel::DrawArea(wxWindowDC& dc)
DXDrawingPanel::DXDrawingPanel(wxWindow* parent, int _width, int _height) DXDrawingPanel::DXDrawingPanel(wxWindow* parent, int _width, int _height)
: DrawingPanel(parent, _width, _height) : DrawingPanel(parent, _width, _height)
{
// FIXME: implement
}
void DXDrawingPanel::DrawArea(wxWindowDC& dc)
{ {
// FIXME: implement // FIXME: implement
if (!did_init) { if (!did_init) {
@ -2244,11 +2250,6 @@ DXDrawingPanel::DXDrawingPanel(wxWindow* parent, int _width, int _height)
if (todraw) { if (todraw) {
} }
} }
void DXDrawingPanel::DrawArea(wxWindowDC& dc)
{
// FIXME: implement
}
#endif #endif
#ifndef NO_FFMPEG #ifndef NO_FFMPEG