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

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:50:49 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit e48a162f24a5e0cdcfa531f7bdc36f8632bf79e5
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 17 17:12:18 2002 +0000

    	- fixed 3077856 -- REGRESSION: scroll to fragment doesn't work
    	(except when Alex started from command line)
    
            * kwq/kparts/browserextension.h: Initialize reload to false. It was
    	uninitialized, and when true was preventing anchor navigation from working.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2355 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 0a792a1..ca53705 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-10-17  Darin Adler  <darin at apple.com>
 
+	- fixed 3077856 -- REGRESSION: scroll to fragment doesn't work
+	(except when Alex started from command line)
+
+        * kwq/kparts/browserextension.h: Initialize reload to false. It was
+	uninitialized, and when true was preventing anchor navigation from working.
+
+2002-10-17  Darin Adler  <darin at apple.com>
+
 	- fixed 3075992 -- Hang in khtml::RenderFlow::lowestPosition() trying to
 	render http://avoyagetoarcturus.blogspot.com/
 
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 0a792a1..ca53705 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,13 @@
 2002-10-17  Darin Adler  <darin at apple.com>
 
+	- fixed 3077856 -- REGRESSION: scroll to fragment doesn't work
+	(except when Alex started from command line)
+
+        * kwq/kparts/browserextension.h: Initialize reload to false. It was
+	uninitialized, and when true was preventing anchor navigation from working.
+
+2002-10-17  Darin Adler  <darin at apple.com>
+
 	- fixed 3075992 -- Hang in khtml::RenderFlow::lowestPosition() trying to
 	render http://avoyagetoarcturus.blogspot.com/
 
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 0a792a1..ca53705 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,13 @@
 2002-10-17  Darin Adler  <darin at apple.com>
 
+	- fixed 3077856 -- REGRESSION: scroll to fragment doesn't work
+	(except when Alex started from command line)
+
+        * kwq/kparts/browserextension.h: Initialize reload to false. It was
+	uninitialized, and when true was preventing anchor navigation from working.
+
+2002-10-17  Darin Adler  <darin at apple.com>
+
 	- fixed 3075992 -- Hang in khtml::RenderFlow::lowestPosition() trying to
 	render http://avoyagetoarcturus.blogspot.com/
 
diff --git a/WebCore/kwq/KWQKPartsBrowserExtension.h b/WebCore/kwq/KWQKPartsBrowserExtension.h
index 4db7a67..ee29cad 100644
--- a/WebCore/kwq/KWQKPartsBrowserExtension.h
+++ b/WebCore/kwq/KWQKPartsBrowserExtension.h
@@ -48,7 +48,7 @@ struct URLArgs {
     int xOffset;
     int yOffset;
 
-    URLArgs() : xOffset(0), yOffset(0), m_doPost(false) { }
+    URLArgs() : reload(false), xOffset(0), yOffset(0), m_doPost(false) { }
     
     QString contentType() const { return m_contentType; }
     void setContentType(const QString &t) { m_contentType = t; }
diff --git a/WebCore/kwq/kparts/browserextension.h b/WebCore/kwq/kparts/browserextension.h
index 4db7a67..ee29cad 100644
--- a/WebCore/kwq/kparts/browserextension.h
+++ b/WebCore/kwq/kparts/browserextension.h
@@ -48,7 +48,7 @@ struct URLArgs {
     int xOffset;
     int yOffset;
 
-    URLArgs() : xOffset(0), yOffset(0), m_doPost(false) { }
+    URLArgs() : reload(false), xOffset(0), yOffset(0), m_doPost(false) { }
     
     QString contentType() const { return m_contentType; }
     void setContentType(const QString &t) { m_contentType = t; }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list