X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4b764db3795a5f202f379ee3b0314b2de91c15fa..f9562c6b2d91fe515ab71c5fea2d43d03e91f49e:/samples/opengl/penguin/dxfrenderer.cpp diff --git a/samples/opengl/penguin/dxfrenderer.cpp b/samples/opengl/penguin/dxfrenderer.cpp index 5d18667872..174fa05fc4 100644 --- a/samples/opengl/penguin/dxfrenderer.cpp +++ b/samples/opengl/penguin/dxfrenderer.cpp @@ -39,9 +39,9 @@ #include "dxfrenderer.h" -#include -WX_DEFINE_LIST(DXFEntityList); -WX_DEFINE_LIST(DXFLayerList); +#include "wx/listimpl.cpp" +WX_DEFINE_LIST(DXFEntityList) +WX_DEFINE_LIST(DXFLayerList) // Conversion table from AutoCAD ACI colours to RGB values static const struct { unsigned char r, g, b; } aci_to_rgb[256] = { @@ -557,7 +557,7 @@ bool DXFRenderer::Load(wxInputStream& stream) return false; } else if (line2 == wxT("TABLES")) - { + { if (!ParseTables(stream)) return false; }