From 6ec390d53a3dbea90e7308c9e40e03266f5d5127 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 18 Nov 2009 00:38:45 +0000 Subject: Rename DataType to PortType (since that's what it really means). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2273 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/ConnectWindow.cpp | 2 +- src/gui/Port.cpp | 4 ++-- src/gui/PortMenu.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gui') diff --git a/src/gui/ConnectWindow.cpp b/src/gui/ConnectWindow.cpp index 69687b32..c939f5ea 100644 --- a/src/gui/ConnectWindow.cpp +++ b/src/gui/ConnectWindow.cpp @@ -271,7 +271,7 @@ ConnectWindow::connect(bool existing) bool found = _engine_jack_module->get_symbol( "new_jack_audio_driver", (void*&)(new_driver)); if (found) { - world->local_engine->set_driver(DataType::AUDIO, + world->local_engine->set_driver(PortType::AUDIO, SharedPtr(new_driver(*world->local_engine, "default", "", 0))); } } diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp index c4f5de5e..012e8fcd 100644 --- a/src/gui/Port.cpp +++ b/src/gui/Port.cpp @@ -125,9 +125,9 @@ void Port::set_control(float value, bool signal) { if (signal) { - if (model()->type() == DataType::CONTROL) { + if (model()->type() == PortType::CONTROL) { App::instance().engine()->set_port_value(model()->path(), Atom(value)); - } else if (model()->type() == DataType::EVENTS) { + } else if (model()->type() == PortType::EVENTS) { App::instance().engine()->set_port_value(model()->path(), Atom("", 0, NULL)); } diff --git a/src/gui/PortMenu.cpp b/src/gui/PortMenu.cpp index 647dac8b..bbf5cbbd 100644 --- a/src/gui/PortMenu.cpp +++ b/src/gui/PortMenu.cpp @@ -48,7 +48,7 @@ PortMenu::init(SharedPtr port, bool patch_port) _destroy_menuitem->hide(); } - if (port->type() == DataType::EVENTS || port->type() == DataType::VALUE) + if (port->type() == PortType::EVENTS || port->type() == PortType::VALUE) _polyphonic_menuitem->hide(); _enable_signal = true; -- cgit v1.2.1