one more unsigned int -> size_t

master
Andrzej Rybczak 18 years ago
parent 07c9fd6926
commit cbe267abec
  1. 2
      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());

Loading…
Cancel
Save