diff -r c1d43ade656e -r 62cfb7b97fc0 sources/mystring.h --- a/sources/mystring.h Fri May 15 22:46:53 2015 +0300 +++ b/sources/mystring.h Sun May 17 17:22:20 2015 +0300 @@ -104,7 +104,7 @@ void replace (int pos, int n, const String &a) { m_string.replace (pos, n, a.chars()); } void shrink_to_fit() { m_string.shrink_to_fit(); } void sprintf (const char* fmtstr, ...); - bool starts_with (const String &other); + bool starts_with (const String &other) const; String strip (char unwanted) { return strip ({unwanted}); } String strip (const List &unwanted); void trim (int n);