aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/designer/formtemplatewizardpage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/designer/formtemplatewizardpage.cpp')
-rw-r--r--src/plugins/designer/formtemplatewizardpage.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/designer/formtemplatewizardpage.cpp b/src/plugins/designer/formtemplatewizardpage.cpp
index 7336ddc159..ce5f3ddb8c 100644
--- a/src/plugins/designer/formtemplatewizardpage.cpp
+++ b/src/plugins/designer/formtemplatewizardpage.cpp
@@ -49,7 +49,7 @@ namespace Internal {
FormPageFactory::FormPageFactory()
{
- setTypeIdsSuffix(QLatin1String("Form"));
+ setTypeIdsSuffix("Form");
}
Utils::WizardPage *FormPageFactory::create(ProjectExplorer::JsonWizard *wizard, Core::Id typeId,
@@ -117,14 +117,14 @@ bool FormTemplateWizardPage::validatePage()
QMessageBox::critical(this, tr("%1 - Error").arg(title()), errorMessage);
return false;
}
- wizard()->setProperty("FormContents", m_templateContents.split(QLatin1Char('\n')));
+ wizard()->setProperty("FormContents", m_templateContents.split('\n'));
return true;
}
QString FormTemplateWizardPage::stripNamespaces(const QString &className)
{
QString rc = className;
- const int namespaceIndex = rc.lastIndexOf(QLatin1String("::"));
+ const int namespaceIndex = rc.lastIndexOf("::");
if (namespaceIndex != -1)
rc.remove(0, namespaceIndex + 2);
return rc;