Index: sources/gui/GuiView.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -rc088fe92da340747ae49a082ecf3e8e2a4b0467c --- sources/gui/GuiView.cpp (.../GuiView.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/GuiView.cpp (.../GuiView.cpp) (revision c088fe92da340747ae49a082ecf3e8e2a4b0467c) @@ -246,10 +246,14 @@ * \details invocable slot from UI to insert an item in the selection list. * \param vIndex - selected item index * \param vFileName - selected item file name + * \param isPendingFolder - indicate that this file is in the pending subfolder */ -void GuiView::doExportListInsert(quint32 vIndex, const QString &vFilename) +void GuiView::doExportListInsert(quint32 vIndex, const QString &vFilename, bool isPendingFolder) { - _exportList [vIndex] = vFilename ; + // File indicated in the pending folder, append "pending" to filename + QString filename = isPendingFolder ? QString("%1%2").arg(Storage::Log_Folder_Pending_Suffix).arg(vFilename) : vFilename; + + _exportList [vIndex] = filename ; _exportListPercent [vIndex] = 100 ; exportIndex ( vIndex ); exportFile ( vFilename );