[webkit-changes] cvs commit: WebCore/khtml khtml_part.cpp
Kevin
kdecker at opensource.apple.com
Fri Jul 15 10:50:51 PDT 2005
kdecker 05/07/15 10:50:50
Modified: . ChangeLog
khtml khtml_part.cpp
Log:
Reviewed by Adele
Fixed: http://bugzilla.opendarwin.org/show_bug.cgi?id=4009
Test cases added: none, doesn't affect layout
* khtml/khtml_part.cpp:
(KHTMLPart::scheduleLocationChange): Corrected an earlier mistake of testing an always non-zero constant.
Revision Changes Path
1.4430 +10 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.4429
retrieving revision 1.4430
diff -u -r1.4429 -r1.4430
--- ChangeLog 14 Jul 2005 23:53:23 -0000 1.4429
+++ ChangeLog 15 Jul 2005 17:50:46 -0000 1.4430
@@ -1,3 +1,13 @@
+2005-07-15 Kevin Decker <kdecker at apple.com>
+
+ Reviewed by Adele
+
+ Fixed: http://bugzilla.opendarwin.org/show_bug.cgi?id=4009
+ Test cases added: none, doesn't affect layout
+
+ * khtml/khtml_part.cpp:
+ (KHTMLPart::scheduleLocationChange): Corrected an earlier mistake of testing an always non-zero constant.
+
2005-07-14 John Sullivan <sullivan at apple.com>
Reviewed by Ken Kocienda (setFocusNode) and Dave Hyatt (everything).
1.328 +1 -1 WebCore/khtml/khtml_part.cpp
Index: khtml_part.cpp
===================================================================
RCS file: /cvs/root/WebCore/khtml/khtml_part.cpp,v
retrieving revision 1.327
retrieving revision 1.328
diff -u -r1.327 -r1.328
--- khtml_part.cpp 12 Jul 2005 21:52:15 -0000 1.327
+++ khtml_part.cpp 15 Jul 2005 17:50:50 -0000 1.328
@@ -2073,7 +2073,7 @@
// If a redirect was scheduled during a load, then stop the current load.
// Otherwise when the current load transitions from a provisional to a
// committed state, pending redirects may be cancelled.
- if (locationChangeScheduledDuringLoad) {
+ if (d->m_scheduledRedirection == locationChangeScheduledDuringLoad) {
stopLoading(true);
}
More information about the webkit-changes
mailing list