Skip to content

Commit 060fe8f

Browse files
committed
Fix for older QT libs, thanks to:
http://superkuh.com/gnuradio.html#gqrx_qtstuff
1 parent a463764 commit 060fe8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qtgui/dockaudio.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ void DockAudio::on_audioRecButton_clicked(bool checked)
109109
{
110110
if (checked) {
111111
// FIXME: option to use local time
112-
lastAudio = QDateTime::currentDateTimeUtc().toString("gqrx-yyyyMMdd-hhmmss.'wav'");
112+
lastAudio = QDateTime::currentDateTime().toUTC().toString("gqrx-yyyyMMdd-hhmmss.'wav'");
113113

114114
// emit signal and start timer
115115
emit audioRecStarted(lastAudio);

0 commit comments

Comments
 (0)