diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-06-22 16:54:07 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-06-26 23:01:53 +0200 |
commit | 545bed0348ca40730f19128171d787c80b9058f9 (patch) | |
tree | 3d901490ee017755d242b82444b2d5f176f38154 /options/slider.hpp | |
parent | ceee2f51c7c97bd8e6c2702b7b1fe811ef912711 (diff) |
options/slider: fix link error
Diffstat (limited to 'options/slider.hpp')
-rw-r--r-- | options/slider.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/options/slider.hpp b/options/slider.hpp index 958214ce..ab635d56 100644 --- a/options/slider.hpp +++ b/options/slider.hpp @@ -49,8 +49,8 @@ namespace options slider_value update_from_slider(int pos, int q_min, int q_max) const; int to_slider_pos(int q_min, int q_max) const; }; - - QDebug operator << (QDebug dbg, const options::slider_value& val); - QDataStream& operator << (QDataStream& out, const options::slider_value& v); - QDataStream& operator >> (QDataStream& in, options::slider_value& v); } + +OTR_OPTIONS_EXPORT QDebug operator << (QDebug dbg, const options::slider_value& val); +OTR_OPTIONS_EXPORT QDataStream& operator << (QDataStream& out, const options::slider_value& v); +OTR_OPTIONS_EXPORT QDataStream& operator >> (QDataStream& in, options::slider_value& v); |