Skip to content
Snippets Groups Projects
Commit 0c73b2ce authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Fix missed semicolon in code which appears in older Qt versions

parent e828c596
No related branches found
No related tags found
No related merge requests found
......@@ -162,7 +162,7 @@ QSize FindSizeOfLetterM(const QWidget* widget)
#if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0)
auto em = fontMetric.horizontalAdvance('M');
#else
auto em = fontMetric.width('M')
auto em = fontMetric.width('M');
#endif
auto fontAscent = fontMetric.ascent();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment