Skip to content

Commit e8997fd

Browse files
committed
chore: more ci build fixes
1 parent b75c5e8 commit e8997fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ui/src/mainwindow.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1276,7 +1276,7 @@ void MainWindow::encodingChanged( QAction* action )
12761276
mib = mibData.toInt();
12771277
}
12781278

1279-
LOG_DEBUG << "encodingChanged, encoding " << mib;
1279+
LOG_DEBUG << "encodingChanged, encoding " << mib.value_or(0);
12801280
if ( auto crawler = currentCrawlerWidget() ) {
12811281
crawler->setEncoding( mib );
12821282
updateInfoLine();

src/versioncheck/src/versionchecker.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ namespace {
4646

4747
#if defined( Q_OS_WIN )
4848
static constexpr QLatin1String OsSuffix = QLatin1String( "-win", 4 );
49-
#elif defined( Q_OS_OSX )
49+
#elif defined( Q_OS_MACOS )
5050
static constexpr QLatin1String OsSuffix = QLatin1String( "-osx", 4 );
5151
#else
5252
static constexpr QLatin1String OsSuffix = QLatin1String( "-linux", 6 );

0 commit comments

Comments
 (0)