2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2020-04-28 11:21:03 +02:00
|
|
|
|
|
|
|
|
#include "changelanguagecommand.h"
|
|
|
|
|
|
2020-05-04 17:01:57 +02:00
|
|
|
#include <QDebug>
|
|
|
|
|
|
2020-04-28 11:21:03 +02:00
|
|
|
namespace QmlDesigner {
|
|
|
|
|
|
|
|
|
|
QDebug operator<<(QDebug debug, const ChangeLanguageCommand &command)
|
|
|
|
|
{
|
|
|
|
|
return debug.nospace() << "ChangeLanguageCommand(" << command.language << ")";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace QmlDesigner
|