summaryrefslogtreecommitdiff
path: root/ui/folder_history_box.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/folder_history_box.h')
-rw-r--r--ui/folder_history_box.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/ui/folder_history_box.h b/ui/folder_history_box.h
index 695ee930..210f89c0 100644
--- a/ui/folder_history_box.h
+++ b/ui/folder_history_box.h
@@ -80,27 +80,16 @@ public:
void setValue(const wxString& dirname)
{
- setValueAndUpdateList(dirname); //required for setting value correctly + Linux to ensure the dropdown is shown as being populated
+ setValueAndUpdateList(dirname); //required for setting value correctly; Linux: ensure the dropdown is shown as being populated
}
// GetValue
private:
void OnKeyEvent(wxKeyEvent& event);
- void OnMouseWheel(wxMouseEvent& event);
- void OnSelection(wxCommandEvent& event);
- void OnValidateSelection(wxCommandEvent& event);
- void OnMouseClick(wxEvent& event) { setValueAndUpdateList(GetValue()); event.Skip(); }
-
+ void OnRequireHistoryUpdate(wxEvent& event);
void setValueAndUpdateList(const wxString& dirname);
-#if wxCHECK_VERSION(2, 9, 1)
- void OnShowDropDown(wxCommandEvent& event);
- void OnHideDropDown(wxCommandEvent& event);
-
- bool dropDownShown;
-#endif
-
std::shared_ptr<FolderHistory> sharedHistory_;
};
bgstack15