From e4f518a33e28ded9eceaf240248c7b3610d2d858 Mon Sep 17 00:00:00 2001 From: wittend99 Date: Sun, 13 May 2012 15:27:22 +0000 Subject: [PATCH] Audio Dialog git-svn-id: https://svn.code.sf.net/p/freetel/code@425 01035d8c-6547-0410-b346-abe4f91aad63 --- fdmdv2/dlg_audio.cpp | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 fdmdv2/dlg_audio.cpp diff --git a/fdmdv2/dlg_audio.cpp b/fdmdv2/dlg_audio.cpp new file mode 100644 index 00000000..8db1dcd0 --- /dev/null +++ b/fdmdv2/dlg_audio.cpp @@ -0,0 +1,32 @@ +//========================================================================== +// Name: dlg_audio.cpp +// +// Purpose: Creates simple wxWidgets dialog GUI for audio +// devices/options. +// +// Date: May 05 2012 +// Initial author: David Witten +// License: BSD License (other licenses may apply to other +// components of this project) +//========================================================================== +#include "dlg_audio.h" + +AudioDlg::AudioDlg( wxWindow* parent ) : DlgAudio( parent ) +{ + +} + +void AudioDlg::OnCancel( wxCommandEvent& event ) +{ + this->EndModal(wxID_OK); +} + +void AudioDlg::OnOK( wxCommandEvent& event ) +{ + this->EndModal(wxID_OK); +} + +void AudioDlg::OnClose( wxCloseEvent& event ) +{ + this->EndModal(wxID_OK); +} -- 2.25.1