[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:04:12 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit ab5693418d8e2fdc423ff53c77beacea3f1d790a
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 22 20:25:39 2003 +0000

    WebBrowser:
        	Fixed 3458715.  Only update progress for current tab, and
        	update progress when tab is switched.
    
            Reviewed by Chris.
    
            * BrowserWebController.m:
            (-[BrowserWebView _updateProgressBar]):
            (-[BrowserWebView progressStarted:]):
            (-[BrowserWebView progressChanged:]):
            (-[BrowserWebView progressFinished:]):
            * BrowserWindowController.m:
            (-[BrowserWindowController didSelectTabViewItem]):
    
    WebKit:
    	Fixed 3458715.  Reset to 0, not .1 when done.
    
            Reviewed by Chris.
    
            * WebView.subproj/WebView.m:
            (-[WebView _resetProgress]):
            (-[WebView _progressStarted:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5237 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 2342a68..9762db8 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2003-10-22  Richard Williamson   <rjw at apple.com>
+
+	Fixed 3458715.  Reset to 0, not .1 when done.
+
+        Reviewed by Chris.
+
+        * WebView.subproj/WebView.m:
+        (-[WebView _resetProgress]):
+        (-[WebView _progressStarted:]):
+
 2003-10-21  Richard Williamson   <rjw at apple.com>
 
 	Don't use small caps font for characters that don't have an
diff --git a/WebKit/WebView.subproj/WebView.m b/WebKit/WebView.subproj/WebView.m
index be27413..1480f97 100644
--- a/WebKit/WebView.subproj/WebView.m
+++ b/WebKit/WebView.subproj/WebView.m
@@ -725,7 +725,7 @@ NSString *_WebMainFrameURLKey = @"mainFrameURL";
     _private->progressItems = nil;
     _private->totalPageAndResourceBytesToLoad = 0;
     _private->totalBytesReceived = 0;
-    _private->progressValue = INITIAL_PROGRESS_VALUE;
+    _private->progressValue = 0;
     _private->lastNotifiedProgressValue = 0;
     _private->lastNotifiedProgressTime = 0;
     _private->finalProgressChangedSent = NO;
@@ -739,6 +739,7 @@ NSString *_WebMainFrameURLKey = @"mainFrameURL";
     [self _willChangeValueForKey: @"estimatedProgress"];
     if (_private->numProgressTrackedFrames == 0 || _private->orginatingProgressFrame == frame){
         [self _resetProgress];
+        _private->progressValue = INITIAL_PROGRESS_VALUE;
         _private->orginatingProgressFrame = [frame retain];
         [[NSNotificationCenter defaultCenter] postNotificationName:WebViewProgressStartedNotification object:self];
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list