From: wittend99 Date: Sun, 13 May 2012 15:29:07 +0000 (+0000) Subject: Comm Ports Dialog X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=107ce20e778b086df9b6c9cc6879f987dbd2c2fc;p=freetel-svn-tracking.git Comm Ports Dialog git-svn-id: https://svn.code.sf.net/p/freetel/code@427 01035d8c-6547-0410-b346-abe4f91aad63 --- diff --git a/fdmdv2/dlg_comports.cpp b/fdmdv2/dlg_comports.cpp new file mode 100644 index 00000000..df73ae68 --- /dev/null +++ b/fdmdv2/dlg_comports.cpp @@ -0,0 +1,22 @@ +//========================================================================== +// Name: dlg_comports.cpp +// Purpose: Creates simple wxWidgets dialog GUI to select +// real/virtual Comm ports. +// Date: May 11 2012 +// Initial author: David Witten +// License: BSD License (other licenses may apply to other +// components of this project) +//========================================================================== +#include "dlg_comports.h" + +//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= +// Class ComPortsDlg +//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= +ComPortsDlg::ComPortsDlg( wxWindow* parent ) : DlgComPorts( parent ) +{ +} + +void ComPortsDlg::OnListItemSelected( wxListEvent& event ) +{ + // TODO: Implement OnListItemSelected +}