summaryrefslogtreecommitdiffstats
path: root/examples/widgets/stylesheet/stylesheeteditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/stylesheet/stylesheeteditor.cpp')
-rw-r--r--examples/widgets/stylesheet/stylesheeteditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/widgets/stylesheet/stylesheeteditor.cpp b/examples/widgets/stylesheet/stylesheeteditor.cpp
index 88f5100d12..5514291a7f 100644
--- a/examples/widgets/stylesheet/stylesheeteditor.cpp
+++ b/examples/widgets/stylesheet/stylesheeteditor.cpp
@@ -85,7 +85,7 @@ void StyleSheetEditor::loadStyleSheet(const QString &sheetName)
{
QFile file(":/qss/" + sheetName.toLower() + ".qss");
file.open(QFile::ReadOnly);
- QString styleSheet = QLatin1String(file.readAll());
+ QString styleSheet = QString::fromLatin1(file.readAll());
ui.styleTextEdit->setPlainText(styleSheet);
qApp->setStyleSheet(styleSheet);