Fix ubuntu build
This commit is contained in:
parent
a3017da2db
commit
680b1428a1
1 changed files with 1 additions and 1 deletions
|
@ -373,7 +373,7 @@ QStringList FolderModel::filterMimeTypes() const
|
||||||
|
|
||||||
void FolderModel::setFilterMimeTypes(const QStringList &mimeList)
|
void FolderModel::setFilterMimeTypes(const QStringList &mimeList)
|
||||||
{
|
{
|
||||||
const QSet<QString> set(mimeList.constBegin(), mimeList.constEnd());
|
QSet<QString> set(mimeList.begin(), mimeList.end());
|
||||||
|
|
||||||
if (m_mimeSet != set) {
|
if (m_mimeSet != set) {
|
||||||
m_mimeSet = set;
|
m_mimeSet = set;
|
||||||
|
|
Loading…
Reference in a new issue