From 9301347f8a798254166c832dc6b71c129f0f7390 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Mon, 11 Jan 2016 15:00:53 +0000 Subject: [PATCH] Better naming WavFile ->BWFFile Broadcast Wave Format is a backwards compatible superset of teh Microsoft WAV file format that has been implemented in teh hope that Windows File Explorer might show the WAV file metadta, as it turns out that is not the case but as it's done anyway. It appears to be impossible to write a WAV file such that MS Windows File Explorer shows any metadata so unless we adopt FLAC format audio files we will have to show metadata with our own software :( git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6384 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- Audio/{WavFile.cpp => BWFFile.cpp} | 4 ++-- Audio/{WavFile.hpp => BWFFile.hpp} | 0 CMakeLists.txt | 2 +- mainwindow.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename Audio/{WavFile.cpp => BWFFile.cpp} (99%) rename Audio/{WavFile.hpp => BWFFile.hpp} (100%) diff --git a/Audio/WavFile.cpp b/Audio/BWFFile.cpp similarity index 99% rename from Audio/WavFile.cpp rename to Audio/BWFFile.cpp index 116f38f36..acbf781d1 100644 --- a/Audio/WavFile.cpp +++ b/Audio/BWFFile.cpp @@ -1,4 +1,4 @@ -#include "WavFile.hpp" +#include "BWFFile.hpp" #include #include @@ -14,7 +14,7 @@ #include "pimpl_impl.hpp" -#include "moc_WavFile.cpp" +#include "moc_BWFFile.cpp" namespace { diff --git a/Audio/WavFile.hpp b/Audio/BWFFile.hpp similarity index 100% rename from Audio/WavFile.hpp rename to Audio/BWFFile.hpp diff --git a/CMakeLists.txt b/CMakeLists.txt index 142907765..bb7018428 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -219,7 +219,7 @@ set (wsjt_qt_CXXSRCS ) set (wsjt_qtmm_CXXSRCS - Audio/WavFile.cpp + Audio/BWFFile.cpp ) set (jt9_CXXSRCS diff --git a/mainwindow.cpp b/mainwindow.cpp index 870c89a4b..f58491f17 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -47,7 +47,7 @@ #include "signalmeter.h" #include "HelpTextWindow.hpp" #include "SampleDownloader.hpp" -#include "Audio/WavFile.hpp" +#include "Audio/BWFFile.hpp" #include "ui_mainwindow.h" #include "moc_mainwindow.cpp"