Skip to content

Instantly share code, notes, and snippets.

@ewencp
Created July 31, 2009 06:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ewencp/159116 to your computer and use it in GitHub Desktop.
Save ewencp/159116 to your computer and use it in GitHub Desktop.
From a689986179e140d1c4f1d8d07299bdf8ef5879c4 Mon Sep 17 00:00:00 2001
From: Ewen Cheslack-Postava <ewencp@cs.stanford.edu>
Date: Thu, 30 Jul 2009 23:25:24 -0700
Subject: [PATCH] Add virtual destructor to WebViewListener.
---
Awesomium/include/WebViewListener.h | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/Awesomium/include/WebViewListener.h b/Awesomium/include/WebViewListener.h
index 7e307f6..a3bdea0 100644
--- a/Awesomium/include/WebViewListener.h
+++ b/Awesomium/include/WebViewListener.h
@@ -43,6 +43,8 @@ namespace Awesomium {
class _OSMExport WebViewListener
{
public:
+ virtual ~WebViewListener() {}
+
/**
* This event is fired when a WebView begins navigating to a new URL.
*
--
1.6.0.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment