Added TODO comments to hex editor context menu. These menu options can not be finished until other debug features such as the debugger and code/data trace/log functionality has been created.

This commit is contained in:
Matthew Budd 2020-08-24 20:50:06 -04:00
parent 1f09ecca2c
commit 67f6be539a
1 changed files with 8 additions and 8 deletions

View File

@ -1197,18 +1197,18 @@ void QHexEdit::contextMenuEvent(QContextMenuEvent *event)
{ {
case MODE_NES_RAM: case MODE_NES_RAM:
{ {
act = new QAction(tr("Add Symbolic Debug Name"), this); act = new QAction(tr("TODO Add Symbolic Debug Name"), this);
menu.addAction(act); menu.addAction(act);
sprintf( stmp, "Add Read Breakpoint for Address $%04X", addr ); sprintf( stmp, "TODO Add Read Breakpoint for Address $%04X", addr );
act = new QAction(tr(stmp), this); act = new QAction(tr(stmp), this);
menu.addAction(act); menu.addAction(act);
sprintf( stmp, "Add Write Breakpoint for Address $%04X", addr ); sprintf( stmp, "TODO Add Write Breakpoint for Address $%04X", addr );
act = new QAction(tr(stmp), this); act = new QAction(tr(stmp), this);
menu.addAction(act); menu.addAction(act);
sprintf( stmp, "Add Execute Breakpoint for Address $%04X", addr ); sprintf( stmp, "TODO Add Execute Breakpoint for Address $%04X", addr );
act = new QAction(tr(stmp), this); act = new QAction(tr(stmp), this);
menu.addAction(act); menu.addAction(act);
@ -1226,25 +1226,25 @@ void QHexEdit::contextMenuEvent(QContextMenuEvent *event)
} }
} }
act = new QAction(tr("Add Bookmark"), this); act = new QAction(tr("TODO Add Bookmark"), this);
menu.addAction(act); menu.addAction(act);
} }
break; break;
case MODE_NES_PPU: case MODE_NES_PPU:
{ {
act = new QAction(tr("Add Bookmark"), this); act = new QAction(tr("TODO Add Bookmark"), this);
menu.addAction(act); menu.addAction(act);
} }
break; break;
case MODE_NES_OAM: case MODE_NES_OAM:
{ {
act = new QAction(tr("Add Bookmark"), this); act = new QAction(tr("TODO Add Bookmark"), this);
menu.addAction(act); menu.addAction(act);
} }
break; break;
case MODE_NES_ROM: case MODE_NES_ROM:
{ {
act = new QAction(tr("Add Bookmark"), this); act = new QAction(tr("TODO Add Bookmark"), this);
menu.addAction(act); menu.addAction(act);
} }
break; break;