fix misspellings

This commit is contained in:
beru
2019-03-23 18:18:52 +09:00
parent e39158f72f
commit 3160b8a204
14 changed files with 33 additions and 33 deletions

View File

@@ -15,7 +15,7 @@
namespace nana
{
//overlap test if overlaped between r1 and r2
//overlap test if overlapped between r1 and r2
bool overlapped(const rectangle& r1, const rectangle& r2)
{
if (r1.y + (long long)(r1.height) <= r2.y) return false;