Skip to content
Snippets Groups Projects
Commit 4fcabed8 authored by Thorbjørn Lindeijer's avatar Thorbjørn Lindeijer
Browse files

Fixed .h++ and .c++ files to be recognized as supported file types

For example, when creating a new generic project, such files would not
automatically get added to the list of files.

Reviewed-by: Daniel Molkentin
parent f9cd84c1
No related branches found
No related tags found
No related merge requests found
......@@ -573,7 +573,7 @@ private:
BaseMimeTypeParser:: BaseMimeTypeParser() :
// RE to match a suffix glob pattern: "*.ext" (and not sth like "Makefile" or
// "*.log[1-9]"
m_suffixPattern(QLatin1String("^\\*\\.[\\w]+$"))
m_suffixPattern(QLatin1String("^\\*\\.[\\w+]+$"))
{
QTC_ASSERT(m_suffixPattern.isValid(), /**/);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment