Fixed: Assign instead of comparison

This commit is contained in:
kervala 2013-11-22 11:20:07 +01:00
parent 2b8dd8c279
commit e2109e7971

View file

@ -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" )
{ {