Files
qt-creator/src/plugins/coreplugin/plugininstallwizard.h
Alessandro Portale 01040420a7 Core: Export Core::executePluginInstallWizard
ExtensionManager wants to execute the wizard, but it lives in another
plugin.

This change exports the former Core::PluginInstallWizard::exec as
Core::executePluginInstallWizard

Change-Id: I3ba068e9c8351355abfedfb9f6d6879de55b0534
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2024-05-28 12:39:06 +00:00

17 lines
357 B
C++

// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "core_global.h"
#include <utils/filepath.h>
#include <QCoreApplication>
namespace Core {
CORE_EXPORT bool executePluginInstallWizard(const Utils::FilePath &archive = {});
} // namespace Core