Reviewed by adele.
Build fix.
* kjs/date_object.cpp:
(KJS::DateProtoFunc::callAsFunction): use size() not "len()"
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@13318
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-03-15 Eric Seidel <eseidel@apple.com>
+
+ Reviewed by adele.
+
+ Build fix.
+
+ * kjs/date_object.cpp:
+ (KJS::DateProtoFunc::callAsFunction): use size() not "len()"
+
2006-03-15 Eric Seidel <eseidel@apple.com>
Reviewed by mjs.
const int bufsize=100;
char timebuffer[bufsize];
CString oldlocale = setlocale(LC_TIME, 0);
- if (!oldlocale.len())
+ if (!oldlocale.size())
oldlocale = setlocale(LC_ALL, 0);
// FIXME: Where's the code to set the locale back to oldlocale?
#endif