diff options
Diffstat (limited to 'spline/spline-widget.hpp')
-rw-r--r-- | spline/spline-widget.hpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/spline/spline-widget.hpp b/spline/spline-widget.hpp index 51c13056..2fa2a365 100644 --- a/spline/spline-widget.hpp +++ b/spline/spline-widget.hpp @@ -12,7 +12,6 @@ #include "spline.hpp" #include "api/plugin-api.hpp" #include "options/options.hpp" -using namespace options; #include "export.hpp" @@ -21,6 +20,10 @@ using namespace options; #include <QDebug> +namespace spline_detail { + +using namespace options; + class OTR_SPLINE_EXPORT spline_widget final : public QWidget { Q_OBJECT @@ -97,3 +100,7 @@ private: static constexpr inline int point_size = 4; }; + +} // ns spline_detail + +using spline_widget = spline_detail::spline_widget; |