put change_alpha() into ArdourCanvas namespace as intended
authorPaul Davis <paul@linuxaudiosystems.com>
Wed, 21 Sep 2016 20:23:33 +0000 (15:23 -0500)
committerPaul Davis <paul@linuxaudiosystems.com>
Tue, 27 Sep 2016 19:59:31 +0000 (14:59 -0500)
libs/canvas/colors.cc

index 7a108e7f85a36bd4aad3380478df053f9a0228f3..0bd3f8b04961875622ffb3c847697c7188e43fe6 100644 (file)
@@ -36,7 +36,7 @@ using std::max;
 using std::min;
 
 ArdourCanvas::Color
-change_alpha (Color c, double a)
+ArdourCanvas::change_alpha (Color c, double a)
 {
        return ((c & ~0xff) | (lrintf (a*255.0) & 0xff));
 }