mirror of https://github.com/mgba-emu/mgba.git
Qt: Remove useless help icons in dialogs
This commit is contained in:
parent
91b53fc0c1
commit
c6efb396d4
1
CHANGES
1
CHANGES
|
@ -7,6 +7,7 @@ Misc:
|
||||||
- Qt: Window size command line options are now supported
|
- Qt: Window size command line options are now supported
|
||||||
- Qt: Increase usability of key mapper
|
- Qt: Increase usability of key mapper
|
||||||
- GBA Memory: Use a dynamically sized mask for ROM memory
|
- GBA Memory: Use a dynamically sized mask for ROM memory
|
||||||
|
- Qt: Remove useless help icons in dialogs
|
||||||
|
|
||||||
0.3.0: (2015-08-16)
|
0.3.0: (2015-08-16)
|
||||||
Features:
|
Features:
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
using namespace QGBA;
|
using namespace QGBA;
|
||||||
|
|
||||||
AboutScreen::AboutScreen(QWidget* parent)
|
AboutScreen::AboutScreen(QWidget* parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint)
|
||||||
{
|
{
|
||||||
m_ui.setupUi(this);
|
m_ui.setupUi(this);
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
using namespace QGBA;
|
using namespace QGBA;
|
||||||
|
|
||||||
GDBWindow::GDBWindow(GDBController* controller, QWidget* parent)
|
GDBWindow::GDBWindow(GDBController* controller, QWidget* parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint)
|
||||||
, m_gdbController(controller)
|
, m_gdbController(controller)
|
||||||
{
|
{
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowFullscreenButtonHint);
|
setWindowFlags(windowFlags() & ~Qt::WindowFullscreenButtonHint);
|
||||||
|
|
|
@ -15,7 +15,7 @@ extern "C" {
|
||||||
using namespace QGBA;
|
using namespace QGBA;
|
||||||
|
|
||||||
OverrideView::OverrideView(GameController* controller, ConfigController* config, QWidget* parent)
|
OverrideView::OverrideView(GameController* controller, ConfigController* config, QWidget* parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint)
|
||||||
, m_controller(controller)
|
, m_controller(controller)
|
||||||
, m_config(config)
|
, m_config(config)
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
using namespace QGBA;
|
using namespace QGBA;
|
||||||
|
|
||||||
SensorView::SensorView(GameController* controller, InputController* input, QWidget* parent)
|
SensorView::SensorView(GameController* controller, InputController* input, QWidget* parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint)
|
||||||
, m_controller(controller)
|
, m_controller(controller)
|
||||||
, m_input(input)
|
, m_input(input)
|
||||||
, m_rotation(input->rotationSource())
|
, m_rotation(input->rotationSource())
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
using namespace QGBA;
|
using namespace QGBA;
|
||||||
|
|
||||||
SettingsView::SettingsView(ConfigController* controller, QWidget* parent)
|
SettingsView::SettingsView(ConfigController* controller, QWidget* parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint)
|
||||||
, m_controller(controller)
|
, m_controller(controller)
|
||||||
{
|
{
|
||||||
m_ui.setupUi(this);
|
m_ui.setupUi(this);
|
||||||
|
|
Loading…
Reference in New Issue