summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/sdl/debugqtlogwindow.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/sdl/debugqtlogwindow.c')
-rw-r--r--src/osd/sdl/debugqtlogwindow.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/osd/sdl/debugqtlogwindow.c b/src/osd/sdl/debugqtlogwindow.c
index 20cb0f81bd2..16a335a3aa2 100644
--- a/src/osd/sdl/debugqtlogwindow.c
+++ b/src/osd/sdl/debugqtlogwindow.c
@@ -5,28 +5,28 @@
#include "debug/dvdisasm.h"
-LogWindow::LogWindow(running_machine* machine, QWidget* parent) :
- WindowQt(machine, parent)
+LogWindow::LogWindow(running_machine* machine, QWidget* parent) :
+ WindowQt(machine, parent)
{
- QPoint parentPos = parent->pos();
- setGeometry(parentPos.x()+100, parentPos.y()+100, 800, 400);
- setWindowTitle("Debug: Machine Log");
+ QPoint parentPos = parent->pos();
+ setGeometry(parentPos.x()+100, parentPos.y()+100, 800, 400);
+ setWindowTitle("Debug: Machine Log");
- //
- // The main frame and its input and log widgets
- //
- QFrame* mainWindowFrame = new QFrame(this);
+ //
+ // The main frame and its input and log widgets
+ //
+ QFrame* mainWindowFrame = new QFrame(this);
- // The main log view
- m_logView = new DebuggerView(DVT_LOG,
- m_machine,
- this);
+ // The main log view
+ m_logView = new DebuggerView(DVT_LOG,
+ m_machine,
+ this);
- // Layout
- QVBoxLayout* vLayout = new QVBoxLayout(mainWindowFrame);
- vLayout->setSpacing(3);
- vLayout->setContentsMargins(2,2,2,2);
- vLayout->addWidget(m_logView);
+ // Layout
+ QVBoxLayout* vLayout = new QVBoxLayout(mainWindowFrame);
+ vLayout->setSpacing(3);
+ vLayout->setContentsMargins(2,2,2,2);
+ vLayout->addWidget(m_logView);
- setCentralWidget(mainWindowFrame);
+ setCentralWidget(mainWindowFrame);
}