Skip to content

Commit

Permalink
Warnings should not be categorized
Browse files Browse the repository at this point in the history
  • Loading branch information
DonLakeFlyer committed Sep 19, 2024
1 parent 2f25269 commit bb08731
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/QGCApplication.cc
Original file line number Diff line number Diff line change
Expand Up @@ -392,10 +392,10 @@ void QGCApplication::init()

// Although this should really be in _initForNormalAppBoot putting it here allowws us to create unit tests which pop up more easily
if(QFontDatabase::addApplicationFont(":/fonts/opensans") < 0) {
qCWarning(QGCApplicationLog) << "Could not load /fonts/opensans font";
qWarning() << "Could not load /fonts/opensans font";
}
if(QFontDatabase::addApplicationFont(":/fonts/opensans-demibold") < 0) {
qCWarning(QGCApplicationLog) << "Could not load /fonts/opensans-demibold font";
qWarning() << "Could not load /fonts/opensans-demibold font";
}

if (!_runningUnitTests) {
Expand Down

0 comments on commit bb08731

Please sign in to comment.