EvtMainFrame: implement stagingButtonEvent().
This commit is contained in:
parent
27a57494dc
commit
678ba8fd23
2 changed files with 5 additions and 0 deletions
|
@ -191,6 +191,10 @@ void EvtMainFrame::openSaveDirEvent(wxCommandEvent&) {
|
|||
wxExecute("explorer.exe " + Utility::Directory::toNativeSeparators(_manager.saveDirectory()));
|
||||
}
|
||||
|
||||
void EvtMainFrame::stagingButtonEvent(wxCommandEvent&) {
|
||||
wxExecute("explorer.exe " + Utility::Directory::toNativeSeparators(_manager.stagingAreaDirectory()));
|
||||
}
|
||||
|
||||
void EvtMainFrame::installedSelectionEvent(wxListEvent&) {
|
||||
updateCommandsState();
|
||||
}
|
||||
|
|
|
@ -38,6 +38,7 @@ class EvtMainFrame: public MainFrame {
|
|||
void deleteEvent(wxCommandEvent&);
|
||||
void backupEvent(wxCommandEvent&);
|
||||
void openSaveDirEvent(wxCommandEvent&);
|
||||
void stagingButtonEvent(wxCommandEvent&);
|
||||
void installedSelectionEvent(wxListEvent&);
|
||||
void listColumnDragEvent(wxListEvent&);
|
||||
void fileUpdateEvent(wxFileSystemWatcherEvent& event);
|
||||
|
|
Loading…
Reference in a new issue