From aa44561e86b6520ee0ab10a58db52b6fdd77d991 Mon Sep 17 00:00:00 2001 From: Jonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com> Date: Sun, 11 Jan 2026 17:31:26 +0100 Subject: Change IOrganizer::profile return type to a shared_ptr (#2322) --- src/plugincontainer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugincontainer.cpp') diff --git a/src/plugincontainer.cpp b/src/plugincontainer.cpp index dcb2bc7d..97c6bb09 100644 --- a/src/plugincontainer.cpp +++ b/src/plugincontainer.cpp @@ -787,7 +787,7 @@ void PluginContainer::startPluginsImpl(const std::vector& plugins) con auto* plugin = qobject_cast(object); auto* oproxy = organizerProxy(plugin); oproxy->connectSignals(); - oproxy->m_ProfileChanged(nullptr, m_Organizer->currentProfile()); + oproxy->m_ProfileChanged(nullptr, m_Organizer->currentProfile().get()); if (m_UserInterface) { oproxy->m_UserInterfaceInitialized(m_UserInterface->mainWindow()); -- cgit v1.3.1