[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
cblu
cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:14:33 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 53699b5a0e3831acdc1bcfafd322fc13bf72fdd9
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu May 23 01:35:02 2002 +0000
WebKit:
Removed activate events as this was causing problems
for the QT plug-in.
* Plugins.subproj/IFPluginView.mm:
(-[IFPluginView windowBecameKey:]):
(-[IFPluginView windowResignedKey:]):
WebBrowser:
Added licensing code.
* WebBrowser.pbproj/project.pbxproj:
* ___CFA2UC.c: Added.
(NSGiantRaise):
(iszero):
(newGiant):
(data_to_giant):
(giant_with_data):
(bitlen):
(bitval):
(isone):
(gcompg):
(gtog):
(int_to_giant):
(negg):
(iaddg):
(normal_addg):
(normal_subg):
(reverse_subg):
(addg):
(subg):
(gshiftleft):
(bdivg):
(mulg):
(binvaux):
(binvg):
(initialguess):
(mulndigits):
(gsquare):
(newtondivide):
(gsane):
(stablemodg):
(modg):
(absg):
(gshiftright):
(extractbits):
(gmersennemod):
(GiantAuxMul):
(GiantGrammarMul):
(make_base):
(ell_even):
(ell_odd):
(sequalg):
(elliptic):
(elliptic_simple):
(which_curve):
(new_key):
(new_giant_from_hexstr):
(__CFValidate):
(My__CFCopyRegularEthernetAddrString):
(Alexander___CFA2UC):
(GetEthernetAddr):
* main.m:
(main):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1202 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 5ef339d..5fef380 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,14 @@
2002-05-22 Chris Blumenberg <cblu at apple.com>
+ Removed activate events as this was causing problems
+ for the QT plug-in.
+
+ * Plugins.subproj/IFPluginView.mm:
+ (-[IFPluginView windowBecameKey:]):
+ (-[IFPluginView windowResignedKey:]):
+
+2002-05-22 Chris Blumenberg <cblu at apple.com>
+
Fixed crasher caused by not retaining.
Fixed targeting bug.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 5ef339d..5fef380 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,14 @@
2002-05-22 Chris Blumenberg <cblu at apple.com>
+ Removed activate events as this was causing problems
+ for the QT plug-in.
+
+ * Plugins.subproj/IFPluginView.mm:
+ (-[IFPluginView windowBecameKey:]):
+ (-[IFPluginView windowResignedKey:]):
+
+2002-05-22 Chris Blumenberg <cblu at apple.com>
+
Fixed crasher caused by not retaining.
Fixed targeting bug.
diff --git a/WebKit/Plugins.subproj/IFPluginView.mm b/WebKit/Plugins.subproj/IFPluginView.mm
index 195addf..bb47b15 100644
--- a/WebKit/Plugins.subproj/IFPluginView.mm
+++ b/WebKit/Plugins.subproj/IFPluginView.mm
@@ -524,12 +524,12 @@ static char *newCString(NSString *string)
-(void) windowBecameKey:(NSNotification *)notification
{
- [self sendActivateEvent:YES];
+ [self performSelector:@selector(sendUpdateEvent) withObject:nil afterDelay:.001];
}
-(void) windowResignedKey:(NSNotification *)notification
{
- [self sendActivateEvent:NO];
+ [self performSelector:@selector(sendUpdateEvent) withObject:nil afterDelay:.001];
}
- (void) windowWillClose:(NSNotification *)notification
diff --git a/WebKit/Plugins.subproj/WebPluginView.m b/WebKit/Plugins.subproj/WebPluginView.m
index 195addf..bb47b15 100644
--- a/WebKit/Plugins.subproj/WebPluginView.m
+++ b/WebKit/Plugins.subproj/WebPluginView.m
@@ -524,12 +524,12 @@ static char *newCString(NSString *string)
-(void) windowBecameKey:(NSNotification *)notification
{
- [self sendActivateEvent:YES];
+ [self performSelector:@selector(sendUpdateEvent) withObject:nil afterDelay:.001];
}
-(void) windowResignedKey:(NSNotification *)notification
{
- [self sendActivateEvent:NO];
+ [self performSelector:@selector(sendUpdateEvent) withObject:nil afterDelay:.001];
}
- (void) windowWillClose:(NSNotification *)notification
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list