diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-02-02 00:50:32 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-02-02 00:50:32 +0100 |
commit | 78bbbb6fb99277015aae0987bd9b0206d6dabcdd (patch) | |
tree | 1140ffbae14d4bc2ef6594bf27282bb150c1ff18 /pose-widget | |
parent | 629b459b35268b0bba31bc824eb7078305d3c210 (diff) |
pose-widget: use namespaces correctly
Diffstat (limited to 'pose-widget')
-rw-r--r-- | pose-widget/pose-widget.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pose-widget/pose-widget.cpp b/pose-widget/pose-widget.cpp index ff65d43a..943fc0ad 100644 --- a/pose-widget/pose-widget.cpp +++ b/pose-widget/pose-widget.cpp @@ -22,7 +22,7 @@ // XXX this needs rewriting in terms of scanline rendering -sh 20180105 // see: <https://mikro.naprvyraz.sk/docs/Coding/2/TEXTURE4.TXT> -using namespace pose_widget_impl; +namespace pose_widget_impl { pose_transform::pose_transform(QWidget* dst, double dpr) : dst(dst) { @@ -391,3 +391,5 @@ inline void pose_transform::with_image_lock(F&& fun) fun(image2); } + +} // ns pose_widget_impl |