Draw: Fixed missing Iml method (thanks busiek)

git-svn-id: svn://ultimatepp.org/upp/trunk@9413 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-01-17 06:46:43 +00:00
parent f18efc1d1b
commit b70592e335

View file

@ -95,6 +95,11 @@ UPP::Image IMAGECLASS::Get(const char *s)
return Iml().Get(Find(s));
}
UPP::Image IMAGECLASS::Get(const UPP::String& s)
{
return Iml().Get(Find(s));
}
int IMAGECLASS::Find(const UPP::String& s)
{
return Iml().Find(s);