diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-10-10 11:23:35 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-10-10 11:23:35 +0100 |
| commit | c4ac1ba47652884a647103ec49b2de4c0b6e60a9 (patch) | |
| tree | b4737409619cbf0724d3d6869fb877ad8b1c708c /src/lib/config.h | |
| parent | 06b02d71f02d29494dfb312c5006dc163aa7f4c9 (diff) | |
Fix non-variant build.
Diffstat (limited to 'src/lib/config.h')
| -rw-r--r-- | src/lib/config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/config.h b/src/lib/config.h index a313e4342..011906a41 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -519,11 +519,11 @@ public: std::vector<Monitor> required_monitors () const { return _required_monitors; } +#endif bool allow_spl_editing () const { return _allow_spl_editing; } -#endif /* SET (mostly) */ @@ -1003,11 +1003,11 @@ public: void set_required_monitors (std::vector<Monitor> monitors) { maybe_set (_required_monitors, monitors); } +#endif void set_allow_spl_editing (bool s) { maybe_set (_allow_spl_editing, s); } -#endif void changed (Property p = OTHER); boost::signals2::signal<void (Property)> Changed; @@ -1211,8 +1211,8 @@ private: /** watermark duration in milliseconds */ int _player_watermark_duration; std::vector<Monitor> _required_monitors; - bool _allow_spl_editing; #endif + bool _allow_spl_editing; static int const _current_version; |
