From: Vadim Zeitlin Date: Tue, 16 Aug 2005 23:52:39 +0000 (+0000) Subject: avoid gcc warning X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0db7dfb021e4ec6a0d18f48fcb09b16cf9e15b68 avoid gcc warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35203 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/dlgcmn.cpp b/src/common/dlgcmn.cpp index 6d3e218315..d9844ee042 100644 --- a/src/common/dlgcmn.cpp +++ b/src/common/dlgcmn.cpp @@ -57,6 +57,9 @@ public: // max line width or -1 to disable wrapping void Wrap(wxWindow *win, const wxString& text, int widthMax); + // we don't need it, but just to avoid compiler warnings + virtual ~wxTextWrapper() { } + protected: // line may be empty virtual void OnOutputLine(const wxString& line) = 0;