From: wittend99 Date: Sun, 13 May 2012 15:27:22 +0000 (+0000) Subject: Audio Dialog X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=e4f518a33e28ded9eceaf240248c7b3610d2d858;p=freetel-svn-tracking.git Audio Dialog git-svn-id: https://svn.code.sf.net/p/freetel/code@425 01035d8c-6547-0410-b346-abe4f91aad63 --- 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); +}