get rid of C style casts

This commit is contained in:
Andrzej Rybczak
2009-05-21 23:51:56 +02:00
parent 7eb74a6da2
commit ecd4c8cc17
8 changed files with 18 additions and 18 deletions

View File

@@ -75,7 +75,7 @@ namespace
Border IntoBorder(const string &color)
{
return (Border) IntoColor(color);
return Border(IntoColor(color));
}
}