Fix possible crash when removing ports with jack1
[ardour.git] / 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));
 }