diff options
author | joerg <joerg@pkgsrc.org> | 2012-10-24 15:40:16 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2012-10-24 15:40:16 +0000 |
commit | 513375f78a2cf46ee6837bd78b4797719326bebd (patch) | |
tree | bd39abc390c5cf66b77bb58dab2935c285bfb88e /www/webkit-gtk | |
parent | 8d020a34bbfab438e1b21a1c39cb03c2d7b8666c (diff) | |
download | pkgsrc-513375f78a2cf46ee6837bd78b4797719326bebd.tar.gz |
Don't declare a method OVERRIDE() if the base class doesn't have it.
Diffstat (limited to 'www/webkit-gtk')
-rw-r--r-- | www/webkit-gtk/distinfo | 3 | ||||
-rw-r--r-- | www/webkit-gtk/patches/patch-Source_WebCore_editing_Editor.h | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/www/webkit-gtk/distinfo b/www/webkit-gtk/distinfo index a406c80f0b3..04409f2d405 100644 --- a/www/webkit-gtk/distinfo +++ b/www/webkit-gtk/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.53 2012/08/27 14:11:13 drochner Exp $ +$NetBSD: distinfo,v 1.54 2012/10/24 15:40:16 joerg Exp $ SHA1 (webkit-1.8.3.tar.xz) = ccf567fdfd7fbc63a3340777278e41b17522b80d RMD160 (webkit-1.8.3.tar.xz) = a25fe7966630d2a0e0926f565e28a9054d446c14 @@ -8,6 +8,7 @@ SHA1 (patch-Source_JavaScriptCore_wtf_MathExtras.h) = a47cf7e70688d46096930b2029 SHA1 (patch-Source_JavaScriptCore_wtf_Threading.h) = f056b8f08c68d44e1b9dfd2bcf60cb788b05f38f SHA1 (patch-Source_WebCore_css_CSSGrammar.y) = 22e704480c4f0045ed9ee20f807ce703f20749e9 SHA1 (patch-Source_WebCore_css_CSSParser.cpp) = 8a7687bd2361184765f2757335f80a68bdc09bf7 +SHA1 (patch-Source_WebCore_editing_Editor.h) = 80dab9dc483417703b100155816b2a2bedd533e3 SHA1 (patch-Source_WebCore_xml_XPathGrammar.y) = aa5881029a604673ef3e15be7a8d92ed3489658e SHA1 (patch-Source_WebCore_xml_XPathParser.cpp) = 53fec9eb744c9890ba9d2b0511bb917e8c8a1b7f SHA1 (patch-ai) = 7b94becb603b88c66d8d8f1619d90dc6553d970c diff --git a/www/webkit-gtk/patches/patch-Source_WebCore_editing_Editor.h b/www/webkit-gtk/patches/patch-Source_WebCore_editing_Editor.h new file mode 100644 index 00000000000..8e901f73ee2 --- /dev/null +++ b/www/webkit-gtk/patches/patch-Source_WebCore_editing_Editor.h @@ -0,0 +1,13 @@ +$NetBSD: patch-Source_WebCore_editing_Editor.h,v 1.1 2012/10/24 15:40:16 joerg Exp $ + +--- Source/WebCore/editing/Editor.h.orig 2012-10-23 16:11:11.000000000 +0000 ++++ Source/WebCore/editing/Editor.h +@@ -385,7 +385,7 @@ public: + void deviceScaleFactorChanged(); + + private: +- virtual void willDetachPage() OVERRIDE; ++ virtual void willDetachPage(); + + OwnPtr<DeleteButtonController> m_deleteButtonController; + RefPtr<CompositeEditCommand> m_lastEditCommand; |