Fix compile: Use the proper smart data variable.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 82328
This commit is contained in:
Christopher Michael 2013-01-07 07:39:52 +00:00 committed by Christopher Michael
parent 4f572243c1
commit 4c76f30a57
1 changed files with 5 additions and 5 deletions

View File

@ -638,15 +638,15 @@ e_smart_monitor_clone_add(Evas_Object *obj, Evas_Object *mon)
msd->current.cloned = EINA_TRUE;
/* set appropriate changes */
if (sd->orig.cloned != sd->current.cloned)
if (msd->orig.cloned != msd->current.cloned)
{
sd->changes |= E_SMART_MONITOR_CHANGED_CLONED;
sd->changes |= E_SMART_MONITOR_CHANGED_POSITION;
msd->changes |= E_SMART_MONITOR_CHANGED_CLONED;
msd->changes |= E_SMART_MONITOR_CHANGED_POSITION;
}
else
{
sd->changes &= ~(E_SMART_MONITOR_CHANGED_CLONED);
sd->changes &= ~(E_SMART_MONITOR_CHANGED_POSITION);
msd->changes &= ~(E_SMART_MONITOR_CHANGED_CLONED);
msd->changes &= ~(E_SMART_MONITOR_CHANGED_POSITION);
}
/* set cloned parent */