--- a/mmuifw_plat/mul_widget_api/inc/mul/mulevent.h Fri Feb 19 23:20:00 2010 +0200
+++ b/mmuifw_plat/mul_widget_api/inc/mul/mulevent.h Fri Mar 12 15:45:42 2010 +0200
@@ -99,7 +99,10 @@
ECustomEventIconRelease, /*!< A message regarding release on icon.
* no custom data required. */
- ETypePinch /*!< A message regarding a multitouch pinch gesture identified in coverflow */
+ ETypePinch, /*!< A message regarding a multitouch pinch gesture identified in coverflow */
+
+ ETypeItemRemoved /*!< A message regarding a remove operation completed. Requested by photos for refreshing
+ the HDMI view when an item is deleted, No custom data */
};
--- a/mulwidgets/mulcoverflowwidget/src/mulcoverflowcontrol.cpp Fri Feb 19 23:20:00 2010 +0200
+++ b/mulwidgets/mulcoverflowwidget/src/mulcoverflowcontrol.cpp Fri Mar 12 15:45:42 2010 +0200
@@ -774,9 +774,14 @@
break;
}
case EItemsInserted:
+ {
+ HandleModelCountChange();
+ break;
+ }
case EItemsRemoved:
{
HandleModelCountChange();
+ CAlfWidgetControl::processEvent( TAlfEvent( ETypeItemRemoved ));
break;
}