Fix compilation with Qt 5.6
This commit is contained in:
parent
0a4cab2d68
commit
11faa462dd
|
@ -18,15 +18,15 @@ CPURegistersView::CPURegistersView(CPUWidget* parent) : RegistersView(parent), m
|
|||
wCM_Decrement = setupAction(DIcon("register_dec.png"), tr("Decrement"));
|
||||
wCM_Zero = setupAction(DIcon("register_zero.png"), tr("Zero"));
|
||||
wCM_SetToOne = setupAction(DIcon("register_one.png"), tr("Set to 1"));
|
||||
wCM_Modify = new QAction(DIcon("register_edit.png"), tr("Modify value"));
|
||||
wCM_Modify = new QAction(DIcon("register_edit.png"), tr("Modify value"), this);
|
||||
wCM_Modify->setShortcut(QKeySequence(Qt::Key_Enter));
|
||||
wCM_ToggleValue = setupAction(DIcon("register_toggle.png"), tr("Toggle"));
|
||||
wCM_Undo = setupAction(DIcon("undo.png"), tr("Undo"));
|
||||
wCM_FollowInDisassembly = new QAction(DIcon(QString("processor%1.png").arg(ArchValue("32", "64"))), tr("Follow in Disassembler"));
|
||||
wCM_FollowInDump = new QAction(DIcon("dump.png"), tr("Follow in Dump"));
|
||||
wCM_FollowInStack = new QAction(DIcon("stack.png"), tr("Follow in Stack"));
|
||||
wCM_FollowInMemoryMap = new QAction(DIcon("memmap_find_address_page"), tr("Follow in Memory Map"));
|
||||
wCM_RemoveHardware = new QAction(DIcon("breakpoint_remove.png"), tr("&Remove hardware breakpoint"));
|
||||
wCM_FollowInDisassembly = new QAction(DIcon(QString("processor%1.png").arg(ArchValue("32", "64"))), tr("Follow in Disassembler"), this);
|
||||
wCM_FollowInDump = new QAction(DIcon("dump.png"), tr("Follow in Dump"), this);
|
||||
wCM_FollowInStack = new QAction(DIcon("stack.png"), tr("Follow in Stack"), this);
|
||||
wCM_FollowInMemoryMap = new QAction(DIcon("memmap_find_address_page"), tr("Follow in Memory Map"), this);
|
||||
wCM_RemoveHardware = new QAction(DIcon("breakpoint_remove.png"), tr("&Remove hardware breakpoint"), this);
|
||||
wCM_Incrementx87Stack = setupAction(DIcon("arrow-small-down.png"), tr("Increment x87 Stack"));
|
||||
wCM_Decrementx87Stack = setupAction(DIcon("arrow-small-up.png"), tr("Decrement x87 Stack"));
|
||||
wCM_IncrementPtrSize = setupAction(DIcon("register_inc.png"), ArchValue(tr("Increase 4"), tr("Increase 8")));
|
||||
|
|
|
@ -1156,7 +1156,7 @@ RegistersView::RegistersView(QWidget* parent) : QScrollArea(parent), mVScrollOff
|
|||
wCM_CopyFloatingPointValueToClipboard = setupAction(DIcon("copy.png"), tr("Copy floating point value"));
|
||||
wCM_CopySymbolToClipboard = setupAction(DIcon("pdb.png"), tr("Copy Symbol Value"));
|
||||
wCM_CopyAll = setupAction(DIcon("copy-alt.png"), tr("Copy all registers"));
|
||||
wCM_ChangeFPUView = new QAction(DIcon("change-view.png"), tr("Change view"));
|
||||
wCM_ChangeFPUView = new QAction(DIcon("change-view.png"), tr("Change view"), this);
|
||||
mSwitchSIMDDispMode = new QMenu(tr("Change SIMD Register Display Mode"), this);
|
||||
mSwitchSIMDDispMode->setIcon(DIcon("simdmode.png"));
|
||||
mDisplaySTX = new QAction(tr("Display ST(x)"), this);
|
||||
|
|
Loading…
Reference in New Issue