summaryrefslogtreecommitdiff
path: root/x11/kdelibs3/patches/patch-ax
diff options
context:
space:
mode:
authoragc <agc>2004-08-13 13:05:04 +0000
committeragc <agc>2004-08-13 13:05:04 +0000
commit8b8af6b6d348f3cd662869a38af7f0fd4e06e5cd (patch)
tree6246eb6f4551b5f113aa194bc1a6b415b5335c20 /x11/kdelibs3/patches/patch-ax
parent4e4d0453a4f2b04df7a46da279a99dab4a895938 (diff)
downloadpkgsrc-8b8af6b6d348f3cd662869a38af7f0fd4e06e5cd.tar.gz
Pullup ticket 102 to the pkgsrc-2004Q2 branch, requested by Mark Davies
Security fix for kdelibs3 Module Name: pkgsrc Committed By: markd Date: Wed Aug 11 13:51:14 UTC 2004 Modified Files: pkgsrc/x11/kdelibs3: Makefile distinfo pkgsrc/x11/kdelibs3/patches: patch-an Added Files: pkgsrc/x11/kdelibs3/patches: patch-ap patch-aq patch-ar patch-as patch-at patch-au patch-av patch-aw patch-ax patch-ay Log Message: Fix some issues related to html frames, cookie handling and temporary filenames. From KDE cvs. Bump PKGREVISION.
Diffstat (limited to 'x11/kdelibs3/patches/patch-ax')
-rw-r--r--x11/kdelibs3/patches/patch-ax27
1 files changed, 27 insertions, 0 deletions
diff --git a/x11/kdelibs3/patches/patch-ax b/x11/kdelibs3/patches/patch-ax
new file mode 100644
index 00000000000..7429b5ea1c8
--- /dev/null
+++ b/x11/kdelibs3/patches/patch-ax
@@ -0,0 +1,27 @@
+$NetBSD: patch-ax,v 1.3.6.1 2004/08/13 13:05:05 agc Exp $
+
+Index: kparts/browserextension.cpp
+===================================================================
+RCS file: /home/kde/kdelibs/kparts/browserextension.cpp,v
+retrieving revision 1.60.2.1
+diff -u -p -r1.60.2.1 browserextension.cpp
+--- kparts/browserextension.cpp 10 Apr 2004 15:08:49 -0000 1.60.2.1
++++ kparts/browserextension.cpp 3 Aug 2004 14:36:48 -0000
+@@ -636,6 +636,17 @@ BrowserHostExtension *BrowserHostExtensi
+ void BrowserExtension::virtual_hook( int, void* )
+ { /*BASE::virtual_hook( id, data );*/ }
+
++BrowserHostExtension *
++BrowserHostExtension::findFrameParent(KParts::ReadOnlyPart *callingPart, const QString &frame)
++{
++ FindFrameParentParams param;
++ param.parent = 0;
++ param.callingPart = callingPart;
++ param.frame = frame;
++ virtual_hook(VIRTUAL_FIND_FRAME_PARENT, &param);
++ return param.parent;
++}
++
+ void BrowserHostExtension::virtual_hook( int, void* )
+ { /*BASE::virtual_hook( id, data );*/ }
+