Skip to content

Commit

Permalink
Forgot OnSetupReplayString
Browse files Browse the repository at this point in the history
  • Loading branch information
TricksterGuy committed Sep 27, 2018
1 parent 2cabd8a commit 6ca30ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion complx/Complx.fbp
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@
<property name="permission">none</property>
<property name="shortcut">Ctrl+T</property>
<property name="unchecked_bitmap"></property>
<event name="OnMenuSelection"></event>
<event name="OnMenuSelection">OnSetupReplayString</event>
<event name="OnUpdateUI"></event>
</object>
<object class="wxMenuItem" expanded="0">
Expand Down
2 changes: 2 additions & 0 deletions complx/ComplxFrameDecl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -670,6 +670,7 @@ ComplxFrameDecl::ComplxFrameDecl( wxWindow* parent, wxWindowID id, const wxStrin
this->Connect( menuDebugWatchpoint->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnWatchpoint ) );
this->Connect( menuDebugAdvanced->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnAdvancedBreakpoint ) );
this->Connect( menuDebugBlackbox->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnBlackbox ) );
this->Connect( menuTestSetupReplayString->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnSetupReplayString ) );
this->Connect( menuTestReloadReplayString->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnReloadReplayString ) );
this->Connect( menuTestDescribeReplayString->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnDescribeReplayString ) );
this->Connect( menuHelpDocs->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnDocs ) );
Expand Down Expand Up @@ -772,6 +773,7 @@ ComplxFrameDecl::~ComplxFrameDecl()
this->Disconnect( ID_ADD_WATCHPOINT, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnWatchpoint ) );
this->Disconnect( ID_ADVANCED_BREAKPOINT, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnAdvancedBreakpoint ) );
this->Disconnect( ID_ADD_BLACKBOX, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnBlackbox ) );
this->Disconnect( ID_SETUP_REPLAY_STRING, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnSetupReplayString ) );
this->Disconnect( ID_RELOAD_REPLAY_STRING, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnReloadReplayString ) );
this->Disconnect( ID_DESCRIBE_REPLAY_STRING, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnDescribeReplayString ) );
this->Disconnect( wxID_ANY, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( ComplxFrameDecl::OnDocs ) );
Expand Down
1 change: 1 addition & 0 deletions complx/ComplxFrameDecl.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ class ComplxFrameDecl : public wxFrame
virtual void OnWatchpoint( wxCommandEvent& event ) = 0;
virtual void OnAdvancedBreakpoint( wxCommandEvent& event ) = 0;
virtual void OnBlackbox( wxCommandEvent& event ) = 0;
virtual void OnSetupReplayString( wxCommandEvent& event ) = 0;
virtual void OnReloadReplayString( wxCommandEvent& event ) = 0;
virtual void OnDescribeReplayString( wxCommandEvent& event ) = 0;
virtual void OnDocs( wxCommandEvent& event ) = 0;
Expand Down

0 comments on commit 6ca30ca

Please sign in to comment.