forked from qt-creator/qt-creator
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
This commit is contained in:
@@ -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(), /**/);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user