From: Stefan Csomor Date: Mon, 3 Dec 2007 16:35:05 +0000 (+0000) Subject: fixing warning about missing virt destructor X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9412ee9a2a6a7f606a65d08d57160edc78953e1a fixing warning about missing virt destructor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50457 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/dcgraph.cpp b/src/common/dcgraph.cpp index 923bbe2793..d6e6112d96 100644 --- a/src/common/dcgraph.cpp +++ b/src/common/dcgraph.cpp @@ -67,6 +67,10 @@ wxGCDC::wxGCDC() : { } +wxGCDC::~wxGCDC() +{ +} + wxGraphicsContext* wxGCDC::GetGraphicsContext() { if (!m_pimpl) return NULL;