Files
pilotclient/src/blackgui/components/datasettingscomponent.cpp
Klaus Basan 4e381a048f refs #740, GUI settings in own component
* used in client/mapping tool
* reset font possible
2016-08-26 21:05:46 +01:00

32 lines
972 B
C++

/* Copyright (C) 2015
* swift project Community / Contributors
*
* This file is part of swift Project. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
* including this file, may be copied, modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*/
#include "blackgui/components/datasettingscomponent.h"
#include "ui_datasettingscomponent.h"
using namespace BlackGui;
namespace BlackGui
{
namespace Components
{
CDataSettingsComponent::CDataSettingsComponent(QWidget *parent) :
COverlayMessagesFrame(parent),
ui(new Ui::CDataSettingsComponent)
{
ui->setupUi(this);
ui->comp_GuiSettings->hideOpacity(true);
}
CDataSettingsComponent::~CDataSettingsComponent()
{ }
} // ns
} // ns