summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pixeltool/qpixeltool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pixeltool/qpixeltool.cpp b/src/pixeltool/qpixeltool.cpp
index 760c3f01e..cb556823a 100644
--- a/src/pixeltool/qpixeltool.cpp
+++ b/src/pixeltool/qpixeltool.cpp
@@ -700,11 +700,11 @@ QString QPixelTool::aboutText() const
QString result;
QTextStream str(&result);
- str << "<html></head><body><h2>Qt Pixeltool</h2><p>Qt " << QT_VERSION_STR
+ str << "<html><head></head><body><h2>Qt Pixeltool</h2><p>Qt " << QT_VERSION_STR
<< "</p><p>Copyright (C) 2017 The Qt Company Ltd.</p><h3>Screens</h3><ul>";
for (const QScreen *screen : screens)
str << "<li>" << (screen == windowScreen ? "* " : " ") << screen << "</li>";
- str << "<ul></body></html>";
+ str << "</ul></body></html>";
return result;
}