[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
mjs
mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:30:13 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit b4f84702de3aa3a181f7f222ec8695eec716a61b
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Mar 19 00:35:35 2003 +0000
Reviewed by Darin.
* khtml/ecma/kjs_window.cpp:
(WindowFunc::tryCall): Fix build, use size instead of length.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3857 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index d10c23d..f3c350f 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,12 @@
2003-03-18 Maciej Stachowiak <mjs at apple.com>
+ Reviewed by Darin.
+
+ * khtml/ecma/kjs_window.cpp:
+ (WindowFunc::tryCall): Fix build, use size instead of length.
+
+2003-03-18 Maciej Stachowiak <mjs at apple.com>
+
Reviewed by John.
- fixed 3080337 - default values seem to be "no" when third param of window.open is an empty string
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index d10c23d..f3c350f 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,12 @@
2003-03-18 Maciej Stachowiak <mjs at apple.com>
+ Reviewed by Darin.
+
+ * khtml/ecma/kjs_window.cpp:
+ (WindowFunc::tryCall): Fix build, use size instead of length.
+
+2003-03-18 Maciej Stachowiak <mjs at apple.com>
+
Reviewed by John.
- fixed 3080337 - default values seem to be "no" when third param of window.open is an empty string
diff --git a/WebCore/khtml/ecma/kjs_window.cpp b/WebCore/khtml/ecma/kjs_window.cpp
index fe01b4c..983ba49 100644
--- a/WebCore/khtml/ecma/kjs_window.cpp
+++ b/WebCore/khtml/ecma/kjs_window.cpp
@@ -1126,7 +1126,7 @@ Value WindowFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
// scan feature argument
v = args[2];
QString features;
- if (!v.isNull() && v.type() != UndefinedType && v.toString(exec).length() > 0) {
+ if (!v.isNull() && v.type() != UndefinedType && v.toString(exec).size() > 0) {
features = v.toString(exec).qstring();
// specifying window params means false defaults
winargs.menuBarVisible = false;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list