summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NxWidgets/nxwm/include/iapplication.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/NxWidgets/nxwm/include/iapplication.hxx b/NxWidgets/nxwm/include/iapplication.hxx
index 882c5e6ea..c586e20de 100644
--- a/NxWidgets/nxwm/include/iapplication.hxx
+++ b/NxWidgets/nxwm/include/iapplication.hxx
@@ -219,6 +219,15 @@ namespace NxWM
{
public:
/**
+ * A virtual destructor is required in order to override the IApplicationFactory
+ * destructor. We do this because if we delete IApplicationFactory, we want the
+ * destructor of the class that inherits from IApplication to run, not this
+ * one.
+ */
+
+ virtual ~IApplicationFactory(void) { }
+
+ /**
* Create a new instance of an application.
*/