summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/Length.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/Length.cpp')
-rw-r--r--WebCore/platform/Length.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/WebCore/platform/Length.cpp b/WebCore/platform/Length.cpp
index 3757d92..e2fd9b8 100644
--- a/WebCore/platform/Length.cpp
+++ b/WebCore/platform/Length.cpp
@@ -26,9 +26,9 @@
#include "Length.h"
#include "PlatformString.h"
-#include "StringBuffer.h"
#include <wtf/ASCIICType.h>
#include <wtf/Assertions.h>
+#include <wtf/text/StringBuffer.h>
using namespace WTF;
@@ -103,10 +103,10 @@ Length* newCoordsArray(const String& string, int& len)
Length* r = new Length[len];
int i = 0;
- int pos = 0;
- int pos2;
+ unsigned pos = 0;
+ size_t pos2;
- while ((pos2 = str->find(' ', pos)) != -1) {
+ while ((pos2 = str->find(' ', pos)) != notFound) {
r[i++] = parseLength(str->characters() + pos, pos2 - pos);
pos = pos2+1;
}
@@ -129,10 +129,10 @@ Length* newLengthArray(const String& string, int& len)
Length* r = new Length[len];
int i = 0;
- int pos = 0;
- int pos2;
+ unsigned pos = 0;
+ size_t pos2;
- while ((pos2 = str->find(',', pos)) != -1) {
+ while ((pos2 = str->find(',', pos)) != notFound) {
r[i++] = parseLength(str->characters() + pos, pos2 - pos);
pos = pos2+1;
}