Skip to content

Commit

Permalink
Qt5.5 fix
Browse files Browse the repository at this point in the history
Do not use Qt::ISODateWithMs
  • Loading branch information
Vladisslav P authored and vladisslav2011 committed Apr 18, 2024
1 parent 5842b42 commit 0bb1505
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/applications/gqrx/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1566,6 +1566,13 @@ void MainWindow::stopAudioStreaming()
rx->stop_udp_streaming();
}

#if QT_VERSION < QT_VERSION_CHECK(5, 8, 0)
namespace Qt
{
constexpr const char * ISODateWithMs = "yyyy-MM-ddTHH:mm:ss.zzz[Z|[+|-]HH:mm]";
}
#endif

/** Start I/Q recording. */
void MainWindow::startIqRecording(const QString& recdir, const QString& format)
{
Expand Down

0 comments on commit 0bb1505

Please sign in to comment.