diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2017-05-06 13:15:16 +0200 | 
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-05-10 11:19:22 +0200 | 
| commit | 87c09c0ab5e1334e9877ee6fd7adeb1eb70d5929 (patch) | |
| tree | 3f407f9d0fc947427729913cf60e2e5f9b962ce0 /logic | |
| parent | 604914db84d0468c6c8d04dfe6491e3c15b670f7 (diff) | |
options: don't create QSettings all the time
Update usages.
Diffstat (limited to 'logic')
| -rw-r--r-- | logic/mappings.cpp | 6 | ||||
| -rw-r--r-- | logic/mappings.hpp | 2 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/logic/mappings.cpp b/logic/mappings.cpp index d7764375..bae8c2c0 100644 --- a/logic/mappings.cpp +++ b/logic/mappings.cpp @@ -11,10 +11,10 @@ Map::Map(QString primary, QString secondary, int max_x, int max_y, axis_opts& op      spline_alt.set_max_input(opts.clamp);  } -void Map::save(QSettings& s) +void Map::save()  { -    spline_main.save(s); -    spline_alt.save(s); +    spline_main.save(); +    spline_alt.save();  }  void Map::load() diff --git a/logic/mappings.hpp b/logic/mappings.hpp index 4e0f7218..b3587749 100644 --- a/logic/mappings.hpp +++ b/logic/mappings.hpp @@ -17,7 +17,7 @@ struct OTR_LOGIC_EXPORT Map final  {      Map(QString primary, QString secondary, int max_x, int max_y, axis_opts& opts); -    void save(QSettings& s); +    void save();      void load();      axis_opts& opts; | 
