summaryrefslogtreecommitdiff
path: root/lib/folder_history_box.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:17:25 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:17:25 +0200
commit94e1d2e78b6ff92d5a1c971c277cb6ac792d1c70 (patch)
tree338d2ab72f79901f5d32c96d63cec36f30bcf44e /lib/folder_history_box.h
parent4.4 (diff)
downloadFreeFileSync-94e1d2e78b6ff92d5a1c971c277cb6ac792d1c70.tar.gz
FreeFileSync-94e1d2e78b6ff92d5a1c971c277cb6ac792d1c70.tar.bz2
FreeFileSync-94e1d2e78b6ff92d5a1c971c277cb6ac792d1c70.zip
4.5
Diffstat (limited to 'lib/folder_history_box.h')
-rw-r--r--lib/folder_history_box.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/folder_history_box.h b/lib/folder_history_box.h
index 28b85c90..859234cc 100644
--- a/lib/folder_history_box.h
+++ b/lib/folder_history_box.h
@@ -80,7 +80,7 @@ public:
void setValue(const wxString& dirname)
{
- update(dirname); //required for setting value correctly + Linux to ensure the dropdown is shown as being populated
+ setValueAndUpdateList(dirname); //required for setting value correctly + Linux to ensure the dropdown is shown as being populated
}
// GetValue
@@ -88,9 +88,9 @@ public:
private:
void OnKeyEvent(wxKeyEvent& event);
void OnSelection(wxCommandEvent& event);
- void OnUpdateList(wxEvent& event) { update(GetValue()); event.Skip(); }
+ void OnUpdateList(wxEvent& event) { setValueAndUpdateList(GetValue()); event.Skip(); }
- void update(const wxString& dirname);
+ void setValueAndUpdateList(const wxString& dirname);
#if wxCHECK_VERSION(2, 9, 1)
void OnShowDropDown(wxCommandEvent& event);
bgstack15