summaryrefslogtreecommitdiff
path: root/src/designer/src/components/lib/qdesigner_components.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/designer/src/components/lib/qdesigner_components.cpp')
-rw-r--r--src/designer/src/components/lib/qdesigner_components.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/designer/src/components/lib/qdesigner_components.cpp b/src/designer/src/components/lib/qdesigner_components.cpp
index 307b1b618..7409ef53b 100644
--- a/src/designer/src/components/lib/qdesigner_components.cpp
+++ b/src/designer/src/components/lib/qdesigner_components.cpp
@@ -64,6 +64,8 @@ static void initInstances()
QT_BEGIN_NAMESPACE
+using namespace Qt::StringLiterals;
+
/*!
\class QDesignerComponents
\brief The QDesignerComponents class provides a central resource for the various components
@@ -123,8 +125,8 @@ static inline QString widgetBoxFileName(int qtVersion, const QDesignerLanguageEx
QString rc; {
const QChar dot = QLatin1Char('.');
QTextStream str(&rc);
- str << QDir::homePath() << QDir::separator() << QStringLiteral(".designer") << QDir::separator()
- << QStringLiteral("widgetbox");
+ str << QDir::homePath() << QDir::separator() << ".designer" << QDir::separator()
+ << "widgetbox";
// The naming convention using the version was introduced with 4.4
const int major = qtMajorVersion(qtVersion);
const int minor = qtMinorVersion(qtVersion);
@@ -132,7 +134,7 @@ static inline QString widgetBoxFileName(int qtVersion, const QDesignerLanguageEx
str << major << dot << minor;
if (lang)
str << dot << lang->uiExtension();
- str << QStringLiteral(".xml");
+ str << ".xml";
}
return rc;
}
@@ -154,7 +156,7 @@ QDesignerWidgetBoxInterface *QDesignerComponents::createWidgetBox(QDesignerFormE
}
}
- widgetBox->setFileName(QStringLiteral(":/qt-project.org/widgetbox/widgetbox.xml"));
+ widgetBox->setFileName(u":/qt-project.org/widgetbox/widgetbox.xml"_s);
widgetBox->load();
} while (false);
@@ -209,7 +211,7 @@ QWidget *QDesignerComponents::createResourceEditor(QDesignerFormEditorInterface
}
QtResourceView *resourceView = new QtResourceView(core, parent);
resourceView->setResourceModel(core->resourceModel());
- resourceView->setSettingsKey(QStringLiteral("ResourceBrowser"));
+ resourceView->setSettingsKey(u"ResourceBrowser"_s);
// Note for integrators: make sure you call createResourceEditor() after you instantiated your subclass of designer integration
// (designer doesn't do that since by default editing resources is enabled)
const QDesignerIntegrationInterface *integration = core->integration();