Fixes: Use common default for lower casing file names

This commit is contained in:
Friedemann Kleint
2009-03-18 17:05:48 +01:00
parent bccf4a1fc3
commit 70cf2c76a5
6 changed files with 15 additions and 10 deletions

View File

@@ -51,7 +51,7 @@ ClassNameValidatingLineEditPrivate:: ClassNameValidatingLineEditPrivate() :
m_nameRegexp(QLatin1String("[a-zA-Z_][a-zA-Z0-9_]*(::[a-zA-Z_][a-zA-Z0-9_]*)*")),
m_namespaceDelimiter(QLatin1String("::")),
m_namespacesEnabled(false),
m_lowerCaseFileName(false)
m_lowerCaseFileName(true)
{
QTC_ASSERT(m_nameRegexp.isValid(), return);
}