From 69b44cd860f08dc613474a41ecb16b03bc7a81da Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Wed, 20 Jan 2016 21:34:41 +0100 Subject: Revert "fixed qt build (nw)" This reverts commit a23a0abc768c2a56bc50195ca0379bfe6d3e95cb. --- src/osd/modules/debugger/qt/deviceinformationwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/osd/modules/debugger/qt/deviceinformationwindow.cpp') diff --git a/src/osd/modules/debugger/qt/deviceinformationwindow.cpp b/src/osd/modules/debugger/qt/deviceinformationwindow.cpp index 42e0304c1d5..3e610486b23 100644 --- a/src/osd/modules/debugger/qt/deviceinformationwindow.cpp +++ b/src/osd/modules/debugger/qt/deviceinformationwindow.cpp @@ -46,9 +46,9 @@ void DeviceInformationWindow::fill_device_information() gl1->addWidget(new QLabel(QString("Tag"), primaryFrame), 0, 0); gl1->addWidget(new QLabel(QString(m_device->tag().c_str()), primaryFrame), 0, 1); gl1->addWidget(new QLabel(QString("Name"), primaryFrame), 1, 0); - gl1->addWidget(new QLabel(QString(m_device->name().c_str()), primaryFrame), 1, 1); + gl1->addWidget(new QLabel(QString(m_device->name()), primaryFrame), 1, 1); gl1->addWidget(new QLabel(QString("Shortname"), primaryFrame), 2, 0); - gl1->addWidget(new QLabel(QString(m_device->shortname().c_str()), primaryFrame), 2, 1); + gl1->addWidget(new QLabel(QString(m_device->shortname()), primaryFrame), 2, 1); int cpos = 3; device_interface *intf = m_device->first_interface(); -- cgit v1.2.3