]> git.saurik.com Git - wxWidgets.git/commitdiff
Add a trivial virtual dtor to wxMarkupParserOutput.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 27 Feb 2011 18:36:52 +0000 (18:36 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 27 Feb 2011 18:36:52 +0000 (18:36 +0000)
This class isn't really supposed to be used polymorphically but add a virtual
dtor just to suppress g++ warning about it.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67076 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/private/markupparser.h

index 751c9d67f77e632307f3dbcf30d508350aca8775..9ae44ac5e08f9f65b30f18313d63e548920a07ef 100644 (file)
@@ -78,6 +78,7 @@ class wxMarkupParserOutput
 {
 public:
     wxMarkupParserOutput() { }
+    virtual ~wxMarkupParserOutput() { }
 
     // Virtual functions called by wxMarkupParser while parsing the markup.