Initial iteration for Qt6 port.

This commit is contained in:
Ernie Pasveer
2023-05-16 15:25:28 -05:00
parent 95d1a9179f
commit 9c49fb7f63
31 changed files with 81 additions and 268 deletions
-4
View File
@@ -23,11 +23,7 @@ SeerAboutDialog::SeerAboutDialog (QWidget* parent) : QDialog(parent) {
text.replace("VERSIONNUMBER", Seer::version());
// Put the About text in as markdown. Move back to the begining.
#if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0))
textBrowser->setMarkdown(text);
#else
textBrowser->setText(text);
#endif
textBrowser->moveCursor (QTextCursor::Start);
// Set the TextBrowser's background to the same as the window's.