Stubbed out save_window_pos

This commit is contained in:
Joseph Lenox 2018-05-04 22:35:20 -05:00
parent 2bab9f27e1
commit e263ca2b38
2 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,9 @@ sub save_settings {
}
*/
}
void Settings::save_window_pos(wxWindow* ref, wxString name) {
}
}} // namespace Slic3r::GUI

View File

@ -54,6 +54,8 @@ class Settings {
/// Storage for window positions
std::map<wxString, std::tuple<wxPoint, wxSize, bool> > window_pos { std::map<wxString, std::tuple<wxPoint, wxSize, bool> >() };
void save_window_pos(wxWindow* ref, wxString name);
private:
const std::string LogChannel {"GUI_Settings"}; //< Which log these messages should go to.