From f0a75a3f1d835bc235953d03e1b219bc8d6fcfab Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 1 Dec 2011 20:19:07 +0000 Subject: Fix compilation. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3728 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/Port.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gui/Port.cpp') diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp index dc7d0254..5d6d7f39 100644 --- a/src/gui/Port.cpp +++ b/src/gui/Port.cpp @@ -162,7 +162,7 @@ Port::on_event(GdkEvent* ev) break; } - return Object::on_event(ev); + return FlowCanvas::Port::on_event(ev); } bool @@ -309,9 +309,9 @@ Port::dash() */ void -Port::set_selected(bool b) +Port::set_selected(gboolean b) { - if (b != selected()) { + if (b != get_selected()) { FlowCanvas::Port::set_selected(b); SharedPtr pm = _port_model.lock(); if (pm && b) { -- cgit v1.2.1