diff options
author | 2016-01-20 21:34:41 +0100 | |
---|---|---|
committer | 2016-01-20 21:34:41 +0100 | |
commit | 69b44cd860f08dc613474a41ecb16b03bc7a81da (patch) | |
tree | 57ee8b5088b55f2f59e91a8d76cf9dbc250601c8 /src/osd/modules/debugger/qt/mainwindow.cpp | |
parent | 5f313860207c707266a28a7223bd73c469fa5573 (diff) |
Revert "fixed qt build (nw)"
This reverts commit a23a0abc768c2a56bc50195ca0379bfe6d3e95cb.
Diffstat (limited to 'src/osd/modules/debugger/qt/mainwindow.cpp')
-rw-r--r-- | src/osd/modules/debugger/qt/mainwindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/osd/modules/debugger/qt/mainwindow.cpp b/src/osd/modules/debugger/qt/mainwindow.cpp index 11cdf1c33cc..b3ff2bf7861 100644 --- a/src/osd/modules/debugger/qt/mainwindow.cpp +++ b/src/osd/modules/debugger/qt/mainwindow.cpp @@ -145,7 +145,7 @@ void MainWindow::setProcessor(device_t* processor) // Window title std::string title; - strprintf(title,"Debug: %s - %s '%s'", m_machine->system().name, processor->name().c_str(), processor->tag().c_str()); + strprintf(title,"Debug: %s - %s '%s'", m_machine->system().name, processor->name(), processor->tag().c_str()); setWindowTitle(title.c_str()); } @@ -476,10 +476,10 @@ void MainWindow::createImagesMenu() for (device_image_interface *img = iter.first(); img != NULL; img = iter.next()) { std::string menuName; - strprintf(menuName,"%s : %s", img->device().name().c_str(), img->exists() ? img->filename() : "[empty slot]"); + strprintf(menuName,"%s : %s", img->device().name(), img->exists() ? img->filename() : "[empty slot]"); QMenu* interfaceMenu = imagesMenu->addMenu(menuName.c_str()); - interfaceMenu->setObjectName(img->device().name().c_str()); + interfaceMenu->setObjectName(img->device().name()); QAction* mountAct = new QAction("Mount...", interfaceMenu); QAction* unmountAct = new QAction("Unmount", interfaceMenu); |