forked from qt-creator/qt-creator
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>
17 lines
357 B
C++
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
|