aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/namedwidget.cpp
blob: 7369f6e7d80621054a1a7a8f9ad3f80d918d9f59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "namedwidget.h"

namespace ProjectExplorer {

NamedWidget::NamedWidget(const QString &displayName, QWidget *parent)
    : ProjectSettingsWidget(parent), m_displayName(displayName)
{
}

QString NamedWidget::displayName() const
{
    return m_displayName;
}

} // ProjectExplorer