Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
Browse file

Fix for older QT libs, thanks to:

  • Loading branch information...
commit 060fe8f693f91e5b5de7541fac45ae6d7d02ce5f 1 parent a463764
Pascal Hirsch authored
Showing with 1 addition and 1 deletion.
  1. +1 1  qtgui/dockaudio.cpp
2  qtgui/dockaudio.cpp
View
@@ -109,7 +109,7 @@ void DockAudio::on_audioRecButton_clicked(bool checked)
{
if (checked) {
// FIXME: option to use local time
- lastAudio = QDateTime::currentDateTimeUtc().toString("gqrx-yyyyMMdd-hhmmss.'wav'");
+ lastAudio = QDateTime::currentDateTime().toUTC().toString("gqrx-yyyyMMdd-hhmmss.'wav'");
// emit signal and start timer
emit audioRecStarted(lastAudio);
Please sign in to comment.
Something went wrong with that request. Please try again.