Remove appframe OnMessage

This commit is contained in:
corne lukken 2015-05-26 16:39:17 +02:00
parent 06da0a913c
commit 4ec97af590
2 changed files with 0 additions and 7 deletions

View File

@ -687,8 +687,3 @@ bool AppFrame::loadSession(std::string fileName) {
return true;
}
void AppFrame::OnMessage(std::string text, std::string title) {
wxMessageDialog *message = new wxMessageDialog(NULL, wxString::Format(text.c_str()), wxString::Format(title.c_str()), wxOK | wxICON_ERROR );
message->ShowModal();
}

View File

@ -51,8 +51,6 @@ public:
void saveSession(std::string fileName);
bool loadSession(std::string fileName);
void OnMessage(std::string message, std::string title);
private:
void OnMenu(wxCommandEvent& event);
void OnClose(wxCommandEvent& event);