Home
last modified time | relevance | path

Searched refs:filesNotFound (Results 1 – 9 of 9) sorted by relevance

/dports/audio/soundkonverter/soundkonverter-3.0.1/src/opener/
H A Dplaylistopener.cpp91 QStringList filesNotFound; in fileDialogAccepted() local
110 else filesNotFound += url.url(QUrl::PreferLocalFile); in fileDialogAccepted()
210 if( !filesNotFound.isEmpty() ) in fileDialogAccepted()
212 int filesNotFoundCount = filesNotFound.count(); in fileDialogAccepted()
216 filesNotFound.removeLast(); in fileDialogAccepted()
217 } while( filesNotFound.count() >= 5 ); in fileDialogAccepted()
218 filesNotFound += i18n("... and %1 more files",filesNotFoundCount-4); in fileDialogAccepted()
220 filesNotFound.prepend( i18n("The following files couldn't be found:\n") ); in fileDialogAccepted()
224 messageBox->setText( filesNotFound.join("\n").replace("\n","<br>") ); in fileDialogAccepted()
/dports/www/getleft/Getleft-v1.2/scripts/
H A DDescargar.tcl166 variable filesNotFound
281 variable filesNotFound
310 set filesNotFound($link) 1
425 variable filesNotFound
429 if {[info exists filesNotFound($link)]} {
/dports/games/ecwolf/ecwolf-1.3.3-src/android-libs/launcher/src/com/beloko/idtech/
H A DUtils.java83 String filesNotFound = ""; in checkFiles() local
110 filesNotFound += e + "\n"; in checkFiles()
116 if (filesNotFound.contentEquals("")) in checkFiles()
119 return filesNotFound; in checkFiles()
/dports/audio/kid3-kf5/kid3-3.8.6/src/core/model/
H A Dplaylistmodel.h164 QStringList filesNotFound() const { return m_filesNotFound; } in filesNotFound() function
/dports/audio/kid3-qt5/kid3-3.8.6/src/core/model/
H A Dplaylistmodel.h164 QStringList filesNotFound() const { return m_filesNotFound; } in filesNotFound() function
/dports/audio/kid3-kf5/kid3-3.8.6/src/gui/forms/
H A Dbasemainwindow.cpp783 QStringList filesNotFound = model->filesNotFound(); in showPlaylistEditDialog() local
784 if (!filesNotFound.isEmpty()) { in showPlaylistEditDialog()
786 m_w, tr("Files not found"), filesNotFound.join(QLatin1Char('\n')), in showPlaylistEditDialog()
/dports/audio/kid3-qt5/kid3-3.8.6/src/gui/forms/
H A Dbasemainwindow.cpp783 QStringList filesNotFound = model->filesNotFound(); in showPlaylistEditDialog() local
784 if (!filesNotFound.isEmpty()) { in showPlaylistEditDialog()
786 m_w, tr("Files not found"), filesNotFound.join(QLatin1Char('\n')), in showPlaylistEditDialog()
/dports/games/openbve/OpenBVE-1.8.2.1/source/OpenBVE/System/
H A DGameWindow.cs894 int filesNotFound = 0; in SetupSimulation()
901 filesNotFound++; in SetupSimulation()
914 if (filesNotFound != 0) in SetupSimulation()
916 NotFound = filesNotFound.ToString() + " file(s) not found"; in SetupSimulation()
/dports/devel/qbs/qbs-src-1.21.0/src/lib/corelib/api/
H A Dproject.cpp495 QStringList filesNotFound = filesContext.absoluteFilePaths; in removeFiles() local
498 if (filesNotFound.removeOne(sa->absoluteFilePath)) in removeFiles()
501 if (!filesNotFound.empty()) { in removeFiles()
503 .arg(filesNotFound.join(QLatin1String(", ")))); in removeFiles()