From 16cec2e7df3442de67e66f55eb36cd4d0c60de45 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Wed, 20 Jan 2016 20:50:24 +0000 Subject: [PATCH] Fix another CLang++ warning git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6410 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index fa1107070..e9909b9f1 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1021,11 +1021,11 @@ void MainWindow::save_wave_file (QString const& name, short const * data, int se .arg (m_hisCall) .arg (m_hisGrid).toLocal8Bit () : ""}); BWFFile::InfoDictionary list_info { - {{'I','S','R','C'}, source.toLocal8Bit ()}, - {{'I','S','F','T'}, program_title (revision ()).simplified ().toLocal8Bit ()}, - {{'I','C','R','D'}, QDateTime::currentDateTime () + {{{'I','S','R','C'}}, source.toLocal8Bit ()}, + {{{'I','S','F','T'}}, program_title (revision ()).simplified ().toLocal8Bit ()}, + {{{'I','C','R','D'}}, QDateTime::currentDateTime () .toString ("yyyy-MM-ddTHH:mm:ss.zzzZ").toLocal8Bit ()}, - {{'I','C','M','T'}, comment.toLocal8Bit ()}, + {{{'I','C','M','T'}}, comment.toLocal8Bit ()}, }; BWFFile wav {format, name, list_info}; wav.open (BWFFile::WriteOnly);