diff options
author | 2015-08-01 20:41:27 +0200 | |
---|---|---|
committer | 2015-08-01 20:43:47 +0200 | |
commit | 9485ca9d43dcab732325e4ba16194153ea293d4b (patch) | |
tree | 5fb55315d4a4f3c001ecbdcf3b877d20ad60f2a6 /src/osd/modules/debugger/qt/deviceswindow.c | |
parent | c9174e36897ccb723de18cb0361557629caba912 (diff) |
Revert "debugqt: Port to Qt5 [O. Galibert]"
Experience shows it's too early for that. I'll keep that in a corner
and we'll see again later.
Diffstat (limited to 'src/osd/modules/debugger/qt/deviceswindow.c')
-rw-r--r-- | src/osd/modules/debugger/qt/deviceswindow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/modules/debugger/qt/deviceswindow.c b/src/osd/modules/debugger/qt/deviceswindow.c index 75d84f4bc7e..0a71fd8fbdf 100644 --- a/src/osd/modules/debugger/qt/deviceswindow.c +++ b/src/osd/modules/debugger/qt/deviceswindow.c @@ -128,8 +128,8 @@ DevicesWindow::DevicesWindow(running_machine* machine, QWidget* parent) : m_devices_view->setModel(&m_devices_model); m_devices_view->expandAll(); m_devices_view->resizeColumnToContents(0); - connect(m_devices_view->selectionModel(), &QItemSelectionModel::currentRowChanged, this, &DevicesWindow::currentRowChanged); - connect(m_devices_view, &QTreeView::activated, this, &DevicesWindow::activated); + connect(m_devices_view->selectionModel(), SIGNAL(currentRowChanged(const QModelIndex &,const QModelIndex &)), this, SLOT(currentRowChanged(const QModelIndex &,const QModelIndex &))); + connect(m_devices_view, SIGNAL(activated(const QModelIndex &)), this, SLOT(activated(const QModelIndex &))); setCentralWidget(m_devices_view); } |