From 7f5031b6e57a830216f3071c7536b96fbd0e33ac Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 17 Nov 2014 21:35:10 -0500 Subject: [PATCH] cleanup --- src/audio/AudioThread.h | 9 --------- src/demod/DemodulatorThread.h | 4 ---- 2 files changed, 13 deletions(-) diff --git a/src/audio/AudioThread.h b/src/audio/AudioThread.h index 344953c..ab3a247 100644 --- a/src/audio/AudioThread.h +++ b/src/audio/AudioThread.h @@ -20,15 +20,6 @@ static int patestCallback(const void *inputBuffer, void *outputBuffer, unsigned long framesPerBuffer, const PaStreamCallbackTimeInfo* timeInfo, PaStreamCallbackFlags statusFlags, void *userData); -// declare a new type of event, to be used by our AudioThread class: -//wxDECLARE_EVENT(wxEVT_COMMAND_AudioThread_COMPLETED, wxThreadEvent); -//wxDECLARE_EVENT(wxEVT_COMMAND_AudioThread_UPDATE, wxThreadEvent); -//wxDECLARE_EVENT(wxEVT_COMMAND_AudioThread_INPUT, wxThreadEvent); - -enum { - EVENT_AUDIO_INPUT = wxID_HIGHEST + 3 -}; - class AudioThread: public wxThread { public: std::queue > audio_queue; diff --git a/src/demod/DemodulatorThread.h b/src/demod/DemodulatorThread.h index 6f2ee2b..7d053e5 100644 --- a/src/demod/DemodulatorThread.h +++ b/src/demod/DemodulatorThread.h @@ -14,10 +14,6 @@ #include "liquid/liquid.h" -enum { - EVENT_DEMOD_INPUT = wxID_HIGHEST + 2 -}; - class DemodulatorThread: public wxThread { public: DemodulatorThread(DemodulatorThreadQueue* pQueue, int id = 0);