ui/views/slideshowview/src/glxslideshowwidget.cpp
changeset 71 27f2d7aec52a
parent 62 36d93b4dc635
--- a/ui/views/slideshowview/src/glxslideshowwidget.cpp	Mon Sep 27 15:13:20 2010 +0530
+++ b/ui/views/slideshowview/src/glxslideshowwidget.cpp	Wed Oct 06 14:49:39 2010 +0530
@@ -424,7 +424,7 @@
 {
     TRACER ( "GlxSlideShowWidget::clearCurrentModel( ) ");
     if ( mModel ) {
-        disconnect( mModel, SIGNAL( dataChanged(QModelIndex,QModelIndex) ), this, SLOT( dataChanged(QModelIndex,QModelIndex) ) );
+        disconnect( mModel, SIGNAL( fullScreenDataChanged(QModelIndex,QModelIndex) ), this, SLOT( dataChanged(QModelIndex,QModelIndex) ) );
         disconnect(mModel, SIGNAL(rowsInserted(QModelIndex,int,int)), this, SLOT(rowsInserted(QModelIndex,int,int)));
         disconnect(mModel, SIGNAL(rowsRemoved(QModelIndex,int,int)), this, SLOT(rowsRemoved(QModelIndex,int,int)));
         disconnect(mModel, SIGNAL(destroyed()), this, SLOT( modelDestroyed()));
@@ -436,7 +436,7 @@
 {
     TRACER("GlxSlideShowWidget::initializeNewModel" );
     if ( mModel ) {
-        connect( mModel, SIGNAL( dataChanged(QModelIndex,QModelIndex) ), this, SLOT( dataChanged(QModelIndex,QModelIndex) ) );
+        connect( mModel, SIGNAL( fullScreenDataChanged(QModelIndex,QModelIndex) ), this, SLOT( dataChanged(QModelIndex,QModelIndex) ) );
         connect(mModel, SIGNAL(rowsInserted(QModelIndex,int,int)), this, SLOT(rowsInserted(QModelIndex,int,int)));
         connect(mModel, SIGNAL(rowsRemoved(QModelIndex,int,int)), this, SLOT(rowsRemoved(QModelIndex,int,int)));
         connect(mModel, SIGNAL(destroyed()), this, SLOT( modelDestroyed()));