[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 06:27:43 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 6ebe5f87d4e4c7ca43e9cf23099c87b32c4d497d
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jul 26 23:18:04 2002 +0000

            WebframeLoadType enum first value was explicitly set, so 0 was used.
            I assumed 0 was unitialized, and depended on that to not execute some 'transitional'
            back/forward.  This problem broke back/forward.
    
            * WebView.subproj/WebFramePrivate.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1683 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 681acfd..e590a60 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,11 @@
+2002-07-26  Richard Williamson  <rjw at apple.com>
+
+        WebframeLoadType enum first value was explicitly set, so 0 was used.  
+        I assumed 0 was unitialized, and depended on that to not execute some 'transitional'
+        back/forward.  This problem broke back/forward.
+
+        * WebView.subproj/WebFramePrivate.h:
+
 2002-07-26  John Sullivan  <sullivan at apple.com>
 
 	WebKit part of fix for 3009404 -- Back/Forward menu items should use [ and ],
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 681acfd..e590a60 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-07-26  Richard Williamson  <rjw at apple.com>
+
+        WebframeLoadType enum first value was explicitly set, so 0 was used.  
+        I assumed 0 was unitialized, and depended on that to not execute some 'transitional'
+        back/forward.  This problem broke back/forward.
+
+        * WebView.subproj/WebFramePrivate.h:
+
 2002-07-26  John Sullivan  <sullivan at apple.com>
 
 	WebKit part of fix for 3009404 -- Back/Forward menu items should use [ and ],
diff --git a/WebKit/WebView.subproj/WebFramePrivate.h b/WebKit/WebView.subproj/WebFramePrivate.h
index 57c1952..2023f7a 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.h
+++ b/WebKit/WebView.subproj/WebFramePrivate.h
@@ -30,12 +30,13 @@ typedef enum {
 } WebFrameState;
 
 typedef enum {
-    WebFrameLoadTypeStandard,
-    WebFrameLoadTypeBack,
-    WebFrameLoadTypeForward,
-    WebFrameLoadTypeIndexedBack,
-    WebFrameLoadTypeIndexedForward,
-    WebFrameLoadTypeRefresh,
+    WebFrameLoadTypeUninitialized = 0,
+    WebFrameLoadTypeStandard = 1,
+    WebFrameLoadTypeBack = 2,
+    WebFrameLoadTypeForward = 3,
+    WebFrameLoadTypeIndexedBack = 4,
+    WebFrameLoadTypeIndexedForward = 5,
+    WebFrameLoadTypeRefresh = 6
 } WebFrameLoadType;
 
 #define WebFrameStateChangedNotification @"WebFrameStateChangedNotification"

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list