Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move FreeDV Reporter dialog code to dialogs section of codebase. #664

Merged
merged 3 commits into from
Jan 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions USER_MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -895,6 +895,8 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
* Prevent unnecessary recreation of resamplers in analog mode. (PR #661)
2. Enhancements:
* Add Frequency column to RX drop-down. (PR #663)
3. Code cleanup:
* Move FreeDV Reporter dialog code to dialogs section of codebase. (PR #664)

## V1.9.7.2 January 2024

Expand Down
1 change: 0 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
set(FREEDV_SOURCES
freedv_reporter.cpp
main.cpp
topFrame.cpp
sox_biquad.c
Expand Down
3 changes: 2 additions & 1 deletion src/gui/dialogs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ add_library(fdv_gui_dialogs STATIC
dlg_easy_setup.cpp
dlg_filter.cpp
dlg_options.cpp
dlg_ptt.cpp)
dlg_ptt.cpp
freedv_reporter.cpp)

target_include_directories(fdv_gui_dialogs PRIVATE ${CODEC2_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR}/../.. ${CMAKE_CURRENT_BINARY_DIR}/../..)

Expand Down
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
#include "gui/dialogs/dlg_options.h"
#include "gui/dialogs/dlg_filter.h"
#include "gui/dialogs/dlg_easy_setup.h"
#include "gui/dialogs/freedv_reporter.h"

#define wxUSE_FILEDLG 1
#define wxUSE_LIBPNG 1
Expand Down
1 change: 0 additions & 1 deletion src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@
#include "gui/controls/plot_waterfall.h"
#include "gui/controls/plot_spectrum.h"
#include "sndfile.h"
#include "freedv_reporter.h"
#include "sox_biquad.h"
#include "comp_prim.h"
#include "rig_control/HamlibRigController.h"
Expand Down
1 change: 1 addition & 0 deletions src/ongui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include "gui/dialogs/dlg_audiooptions.h"
#include "gui/dialogs/dlg_options.h"
#include "gui/dialogs/dlg_ptt.h"
#include "gui/dialogs/freedv_reporter.h"

#if defined(WIN32)
#include "rig_control/omnirig/OmniRigController.h"
Expand Down
Loading