mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Move DolphinQt2 to DolphinQt
This commit is contained in:
20
Source/Core/DolphinQt/Config/Graphics/GraphicsWidget.cpp
Normal file
20
Source/Core/DolphinQt/Config/Graphics/GraphicsWidget.cpp
Normal file
@ -0,0 +1,20 @@
|
||||
// Copyright 2017 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "DolphinQt/Config/Graphics/GraphicsWidget.h"
|
||||
|
||||
#include <QEvent>
|
||||
#include <QLabel>
|
||||
|
||||
#include "DolphinQt/Config/Graphics/GraphicsWindow.h"
|
||||
|
||||
GraphicsWidget::GraphicsWidget(GraphicsWindow* parent)
|
||||
{
|
||||
parent->RegisterWidget(this);
|
||||
}
|
||||
|
||||
void GraphicsWidget::AddDescription(QWidget* widget, const char* description)
|
||||
{
|
||||
emit DescriptionAdded(widget, description);
|
||||
}
|
Reference in New Issue
Block a user