mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-31 09:21:18 +02:00
Fix infinite recursion in CComponentsPicture::setPicture
This commit is contained in:
@@ -43,7 +43,8 @@ void CComponentsPicture::setPicture(const std::string &name, const int &w, const
|
||||
|
||||
void CComponentsPicture::setPicture(const char *name, const int &w, const int &h)
|
||||
{
|
||||
setPicture(name, w, h);
|
||||
std::string sName(name);
|
||||
setPicture(sName, w, h);
|
||||
}
|
||||
|
||||
std::string CComponentsPicture::getPictureName()
|
||||
|
Reference in New Issue
Block a user