diff options
author | 2021-01-28 02:59:43 +1100 | |
---|---|---|
committer | 2021-01-28 02:59:43 +1100 | |
commit | 83c9637635c575972c039d7d63a48d788e41ba34 (patch) | |
tree | 59bad3ada8a0f0f61bf503da21acef0f237d4d6b /src/osd/modules/debugger/qt/deviceinformationwindow.h | |
parent | 832acf5731d68ca411b5fb358ddb4e79ef0faffa (diff) |
-Qt debugger updates:
* Added context menu with Copy Visible and Paste commands to debug views (partially addresses #6066).
* Made memory view last PC display a context menu item.
* Fixed crash on right-clicking a memory view showing something other than an address space.
-debugger: Fixed commas in dumpkbd output.
Diffstat (limited to 'src/osd/modules/debugger/qt/deviceinformationwindow.h')
-rw-r--r-- | src/osd/modules/debugger/qt/deviceinformationwindow.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/osd/modules/debugger/qt/deviceinformationwindow.h b/src/osd/modules/debugger/qt/deviceinformationwindow.h index 5ed1bfbde91..c7bfa68527d 100644 --- a/src/osd/modules/debugger/qt/deviceinformationwindow.h +++ b/src/osd/modules/debugger/qt/deviceinformationwindow.h @@ -1,7 +1,7 @@ // license:BSD-3-Clause // copyright-holders:Andrew Gardner -#ifndef __DEBUG_QT_DEVICE_INFORMATION_WINDOW_H__ -#define __DEBUG_QT_DEVICE_INFORMATION_WINDOW_H__ +#ifndef MAME_DEBUGGER_QT_DEVICEINFORMATIONWINDOW_H +#define MAME_DEBUGGER_QT_DEVICEINFORMATIONWINDOW_H #include "windowqt.h" @@ -13,7 +13,7 @@ class DeviceInformationWindow : public WindowQt Q_OBJECT public: - DeviceInformationWindow(running_machine* machine, device_t* device = nullptr, QWidget* parent=nullptr); + DeviceInformationWindow(running_machine &machine, device_t *device = nullptr, QWidget* parent=nullptr); virtual ~DeviceInformationWindow(); void set_device(const char *tag); @@ -43,11 +43,11 @@ public: ~DeviceInformationWindowQtConfig() {} - void buildFromQWidget(QWidget* widget); - void applyToQWidget(QWidget* widget); + void buildFromQWidget(QWidget *widget); + void applyToQWidget(QWidget *widget); void addToXmlDataNode(util::xml::data_node &node) const; void recoverFromXmlNode(util::xml::data_node const &node); }; -#endif +#endif // MAME_DEBUGGER_QT_DEVICEINFORMATIONWINDOW_H |