filemanager/src/filemanager/src/fmfindwidget.cpp
changeset 25 b7bfdea70ca2
parent 16 ada7962b4308
child 40 4167eb56f30d
--- a/filemanager/src/filemanager/src/fmfindwidget.cpp	Mon May 03 12:24:39 2010 +0300
+++ b/filemanager/src/filemanager/src/fmfindwidget.cpp	Fri Jun 25 17:08:34 2010 +0800
@@ -75,8 +75,6 @@
 void FmFindWidget::on_resultModel_finished()
 {
     emit finished();
-    //Since layout problem is found, refresh it
-    on_resultModel_refresh();  
 }
 
 void FmFindWidget::on_resultModel_modelCountChanged( int count )
@@ -140,9 +138,6 @@
     connect( mModel, SIGNAL( modelCountChanged( int )),
         this, SLOT( on_resultModel_modelCountChanged( int )) );
     
-    connect( mModel, SIGNAL( refresh()),
-        this, SLOT( on_resultModel_refresh()) );
-
     mListView = new HbListView( this );
     mListView->setModel( mModel );
 
@@ -204,11 +199,5 @@
 
 }
 
-void FmFindWidget::on_resultModel_refresh()
-{
-    mListView->setModel( 0 );
-    mListView->setModel( mModel );  
-}
 
 
-