From fb3787a4d762e984580835e8b93b96d08e840450 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Wed, 13 Jul 2022 19:10:08 +0300 Subject: [PATCH] Drop unused Application::platformCreated() signal --- src/main.cpp | 1 - src/main.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index ac122548bf..d1e1f5c0fb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -557,7 +557,6 @@ void Application::initPlatform(const KPluginMetaData &plugin) m_platform = qobject_cast(loader.instance()); if (m_platform) { m_platform->setParent(this); - Q_EMIT platformCreated(); } else { qCWarning(KWIN_CORE) << "Could not create plugin" << plugin.name() << "error:" << loader.errorString(); } diff --git a/src/main.h b/src/main.h index 8a663f6c4c..952492d8c9 100644 --- a/src/main.h +++ b/src/main.h @@ -251,7 +251,6 @@ Q_SIGNALS: void x11ConnectionAboutToBeDestroyed(); void xwaylandScaleChanged(); void workspaceCreated(); - void platformCreated(); void virtualTerminalCreated(); void started();