forked from qt-creator/qt-creator
Task-number: QDS-10656 Change-Id: I1c1e67d3461650bfaec46ccc10b832effce76ad9 Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io>
25 lines
545 B
C++
25 lines
545 B
C++
// Copyright (C) 2023 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include "effectutils.h"
|
|
|
|
#include <QJsonArray>
|
|
|
|
namespace EffectMaker {
|
|
|
|
QString EffectUtils::codeFromJsonArray(const QJsonArray &codeArray)
|
|
{
|
|
if (codeArray.isEmpty())
|
|
return {};
|
|
|
|
QString codeString;
|
|
for (const auto &element : codeArray)
|
|
codeString += element.toString() + '\n';
|
|
|
|
codeString.chop(1); // Remove last '\n'
|
|
return codeString;
|
|
}
|
|
|
|
} // namespace EffectMaker
|
|
|