From 1428d44e0ad42ef6d6ae685a32b5ba928dedef8a Mon Sep 17 00:00:00 2001 From: David Thompson Date: Wed, 19 Mar 2025 21:51:09 -0400 Subject: [PATCH] =?UTF-8?q?Fix=20`GatherObjectsAgent::configuration()`?= =?UTF-8?q?=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … by having it call its parent. --- smtk/task/GatherObjectsAgent.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smtk/task/GatherObjectsAgent.cxx b/smtk/task/GatherObjectsAgent.cxx index 0f73d93919..2f350cb1d3 100644 --- a/smtk/task/GatherObjectsAgent.cxx +++ b/smtk/task/GatherObjectsAgent.cxx @@ -55,7 +55,7 @@ void GatherObjectsAgent::configure(const Configuration& config) GatherObjectsAgent::Configuration GatherObjectsAgent::configuration() const { - Configuration config; + Configuration config = this->Superclass::configuration(); config["output-port"] = m_outputPortName; Configuration outputs = m_objects; if (!outputs.empty()) -- GitLab