forked from qt-creator/qt-creator
Wizards: allow forcing of first letter to be a capital letter
This adds a flags that enforces capitalization of filenames. Change-Id: Ie6660f1985a2e96fd68549c5ced1b37c33f064cc Reviewed-by: Alessandro Portale <alessandro.portale@nokia.com>
This commit is contained in:
@@ -75,6 +75,16 @@ QString FileWizardDialog::path() const
|
||||
return m_filePage->path();
|
||||
}
|
||||
|
||||
bool FileWizardDialog::forceFirstCapitalLetterForFileName() const
|
||||
{
|
||||
return m_filePage->forceFirstCapitalLetterForFileName();
|
||||
}
|
||||
|
||||
void FileWizardDialog::setForceFirstCapitalLetterForFileName(bool b)
|
||||
{
|
||||
m_filePage->setForceFirstCapitalLetterForFileName(b);
|
||||
}
|
||||
|
||||
void FileWizardDialog::setPath(const QString &path)
|
||||
{
|
||||
m_filePage->setPath(path);
|
||||
|
||||
Reference in New Issue
Block a user