Fixed: Assign instead of comparison
This commit is contained in:
parent
bdefa428b7
commit
559e5ed395
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ namespace GUIEditor
|
||||||
info.description = value.toUtf8().constData();
|
info.description = value.toUtf8().constData();
|
||||||
else
|
else
|
||||||
if( key == "icon" )
|
if( key == "icon" )
|
||||||
info.icon == value.toUtf8().constData();
|
info.icon = value.toUtf8().constData();
|
||||||
else
|
else
|
||||||
if( key == "abstract" )
|
if( key == "abstract" )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue