filemanager/src/filemanager/src/fmfilebrowsewidget.cpp
changeset 33 328cf6fbe40c
parent 32 39cf9ced4cc4
child 40 4167eb56f30d
equal deleted inserted replaced
32:39cf9ced4cc4 33:328cf6fbe40c
   301     connect( copyAction, SIGNAL( triggered() ),
   301     connect( copyAction, SIGNAL( triggered() ),
   302     this, SLOT( on_copyAction_triggered() ), Qt::QueuedConnection );
   302     this, SLOT( on_copyAction_triggered() ), Qt::QueuedConnection );
   303 
   303 
   304     
   304     
   305     QString filePath( mModel->filePath( item->modelIndex() ) );
   305     QString filePath( mModel->filePath( item->modelIndex() ) );
   306     QString formatFilePath( FmUtils::formatPath( filePath ) );
   306     QString formatFilePath( FmUtils::fillPathWithSplash( filePath ) );
   307     QFileInfo fileInfo( filePath );
   307     QFileInfo fileInfo( filePath );
   308     
   308     
   309     if( ( fileInfo.isFile() ) || ( fileInfo.isDir() && !( FmUtils::isDefaultFolder( formatFilePath ) ) ) ){
   309     if( ( fileInfo.isFile() ) || ( fileInfo.isDir() && !( FmUtils::isDefaultFolder( formatFilePath ) ) ) ){
   310         //Move
   310         //Move
   311         HbAction *moveAction = new HbAction();
   311         HbAction *moveAction = new HbAction();