summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-10-06 17:02:30 -0400
committerDavid Robillard <d@drobilla.net>2024-10-11 19:37:24 -0400
commit5c79e4ca151dab969d84899029d8cfdf1f32d654 (patch)
tree198b00ba3f994ff2a467bd9e9b5a39d69fbf2e09
parentdd71122bce462e3ac5304e04919018a7f552867e (diff)
downloadingen-5c79e4ca151dab969d84899029d8cfdf1f32d654.tar.gz
ingen-5c79e4ca151dab969d84899029d8cfdf1f32d654.tar.bz2
ingen-5c79e4ca151dab969d84899029d8cfdf1f32d654.zip
Remove redundant method override
-rw-r--r--include/ingen/client/GraphModel.hpp1
-rw-r--r--src/client/GraphModel.cpp7
2 files changed, 0 insertions, 8 deletions
diff --git a/include/ingen/client/GraphModel.hpp b/include/ingen/client/GraphModel.hpp
index 1bc445ac..1b762566 100644
--- a/include/ingen/client/GraphModel.hpp
+++ b/include/ingen/client/GraphModel.hpp
@@ -54,7 +54,6 @@ public:
get_arc(const ingen::Node* tail, const ingen::Node* head);
bool enabled() const;
- bool polyphonic() const;
uint32_t internal_poly() const;
// Signals
diff --git a/src/client/GraphModel.cpp b/src/client/GraphModel.cpp
index 1404f021..0837f738 100644
--- a/src/client/GraphModel.cpp
+++ b/src/client/GraphModel.cpp
@@ -179,11 +179,4 @@ GraphModel::internal_poly() const
return poly.is_valid() ? poly.get<int32_t>() : 1;
}
-bool
-GraphModel::polyphonic() const
-{
- const Atom& poly = get_property(_uris.ingen_polyphonic);
- return poly.is_valid() && poly.get<int32_t>();
-}
-
} // namespace ingen::client