forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.9' into 4.10
Conflicts: src/libs/utils/mimetypes/mimeprovider.cpp Change-Id: If771d3fba60b670cb0de3a43c9039e24c74aabb1
This commit is contained in:
@@ -784,28 +784,22 @@ void MimeXMLProvider::ensureLoaded()
|
|||||||
{
|
{
|
||||||
if (!m_loaded /*|| shouldCheck()*/) {
|
if (!m_loaded /*|| shouldCheck()*/) {
|
||||||
m_loaded = true;
|
m_loaded = true;
|
||||||
// bool fdoXmlFound = false;
|
QStringList allFiles = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation,
|
||||||
QStringList allFiles;
|
QStringLiteral("mime/packages/freedesktop.org.xml"),
|
||||||
|
QStandardPaths::LocateFile);
|
||||||
|
|
||||||
// const QStringList packageDirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QLatin1String("mime/packages"), QStandardPaths::LocateDirectory);
|
if (allFiles.isEmpty()) {
|
||||||
// //qDebug() << "packageDirs=" << packageDirs;
|
// System freedesktop.org.xml file not found, try to use the one in QtCore.
|
||||||
// for (const QString &packageDir : packageDirs) {
|
// This is private API and has changed in the past:
|
||||||
// QDir dir(packageDir);
|
// - Qt 5.11 added "package" subdir in 7a5644d6481a3c1a7416772998ca4e60c977bfbd
|
||||||
// const QStringList files = dir.entryList(QDir::Files | QDir::NoDotAndDotDot);
|
// - Qt 5.13 added an option to not bundle it at all
|
||||||
// //qDebug() << static_cast<const void *>(this) << packageDir << files;
|
const QString fdoXml5_11 = QStringLiteral(":/qt-project.org/qmime/packages/freedesktop.org.xml");
|
||||||
// if (!fdoXmlFound)
|
if (QFile::exists(fdoXml5_11))
|
||||||
// fdoXmlFound = files.contains(QLatin1String("freedesktop.org.xml"));
|
allFiles << fdoXml5_11;
|
||||||
// QStringList::const_iterator endIt(files.constEnd());
|
else
|
||||||
// for (QStringList::const_iterator it(files.constBegin()); it != endIt; ++it) {
|
qFatal("Utils::MimeXMLProvider: could not find the system freedesktop.org.xml file "
|
||||||
// allFiles.append(packageDir + QLatin1Char('/') + *it);
|
"and QtCore does not have an accessible copy.");
|
||||||
// }
|
}
|
||||||
// }
|
|
||||||
|
|
||||||
// if (!fdoXmlFound) {
|
|
||||||
// // We could instead install the file as part of installing Qt?
|
|
||||||
const char freedesktopOrgXml[] = ":/qt-project.org/qmime/packages/freedesktop.org.xml";
|
|
||||||
allFiles.prepend(QLatin1String(freedesktopOrgXml));
|
|
||||||
// }
|
|
||||||
|
|
||||||
m_nameMimeTypeMap.clear();
|
m_nameMimeTypeMap.clear();
|
||||||
m_aliases.clear();
|
m_aliases.clear();
|
||||||
|
Reference in New Issue
Block a user