Fixed signatures for on_save_preset and on_value_change function objects.

This commit is contained in:
Joseph Lenox 2018-06-13 22:26:21 -05:00 committed by Joseph Lenox
parent ac03e67605
commit 6b4b59da74

View File

@ -53,8 +53,8 @@ public:
bool disable_tree_sel_changed_event {false};
void save_preset();
std::function<void ()> on_save_preset {};
std::function<void ()> on_value_change {};
std::function<void (wxString, preset_t)> on_save_preset {nullptr};
std::function<void (std::string)> on_value_change {nullptr};
config_ptr config;
void reload_config();