From cbe267abecef7aeddf6a4088c86a1336af7b1448 Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Tue, 2 Dec 2008 18:13:27 +0100 Subject: [PATCH] one more unsigned int -> size_t --- src/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.cpp b/src/window.cpp index cfa28201..6e053137 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -720,7 +720,7 @@ wstring ToWString(const string &s) Coordinates Window::IntoCoordinates(const string &s) { Coordinates result; - unsigned int sep = s.find(","); + size_t sep = s.find(","); if (sep != string::npos) { result.first = atoi(s.substr(2, sep-2).c_str());