From 01f7a53195f9219c1960807254a2f190e1735eec Mon Sep 17 00:00:00 2001 From: Dick Hollenbeck Date: Tue, 22 Apr 2014 10:26:59 -0500 Subject: [PATCH] remove KIWAY_EXPRESS::kiway_express() typo, add comments. --- include/kiway_express.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/kiway_express.h b/include/kiway_express.h index e5fba42f63..cebc9dfd95 100644 --- a/include/kiway_express.h +++ b/include/kiway_express.h @@ -72,18 +72,18 @@ public: KIWAY_EXPRESS( const KIWAY_EXPRESS& anOther ); - /// Is the wxEventType argument to wxEvent() and identifies the class - /// in a hurry. Allocated at startup by wxNewEventType(); + /// The wxEventType argument to wxEvent() and identifies an event class + /// in a hurry. These wxEventTypes also allow a common class to be used + /// multiple ways. Should be allocated at startup by wxNewEventType(); static const wxEventType wxEVENT_ID; //DECLARE_DYNAMIC_CLASS( KIWAY_EXPRESS ) private: + FRAME_T m_destination; ///< could have been a bitmap indicating multiple recipients + std::string m_payload; ///< very often s-expression text, but not always - void kiway_express( KIWAY_EXPRESS& aEvent ); - - FRAME_T m_destination; - std::string m_payload; + // possible new ideas here. };