DBG+EXE+GUI: fixed some more sonar warnings
This commit is contained in:
parent
05c9223d0a
commit
103866eafe
|
@ -6,11 +6,11 @@
|
|||
|
||||
#include "assemble.h"
|
||||
#include "memory.h"
|
||||
#include "XEDParse\XEDParse.h"
|
||||
#include "XEDParse/XEDParse.h"
|
||||
#include "value.h"
|
||||
#include "disasm_fast.h"
|
||||
#include "disasm_helper.h"
|
||||
#include "keystone\keystone.h"
|
||||
#include "keystone/keystone.h"
|
||||
#include "datainst_helper.h"
|
||||
#include "debugger.h"
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
@brief Implements runtime database saving and loading.
|
||||
*/
|
||||
|
||||
#include "lz4\lz4file.h"
|
||||
#include "lz4/lz4file.h"
|
||||
#include "console.h"
|
||||
#include "breakpoint.h"
|
||||
#include "patches.h"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#define _DEBUGGER_H
|
||||
|
||||
#include "_global.h"
|
||||
#include "TitanEngine\TitanEngine.h"
|
||||
#include "TitanEngine/TitanEngine.h"
|
||||
#include "command.h"
|
||||
#include "breakpoint.h"
|
||||
#include "_plugins.h"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <stdio.h>
|
||||
#include <windows.h>
|
||||
#include "crashdump.h"
|
||||
#include "..\bridge\bridgemain.h"
|
||||
#include "../bridge/bridgemain.h"
|
||||
#include "LoadResourceString.h"
|
||||
|
||||
/**
|
||||
|
|
|
@ -3068,7 +3068,7 @@ void RegistersView::displayCustomContextMenuSlot(QPoint pos)
|
|||
return;
|
||||
QMenu wMenu(this);
|
||||
QMenu* followInDumpNMenu = nullptr;
|
||||
const QAction* selectedAction;
|
||||
const QAction* selectedAction = nullptr;
|
||||
switch(wSIMDRegDispMode)
|
||||
{
|
||||
case SIMD_REG_DISP_HEX:
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
#define IMPORTS_H
|
||||
|
||||
#ifndef _BRIDGEMAIN_H_
|
||||
#include "bridge\bridgemain.h"
|
||||
#include "bridge/bridgemain.h"
|
||||
#endif
|
||||
#ifndef _DBGFUNCTIONS_H
|
||||
#include "dbg\_dbgfunctions.h"
|
||||
#include "dbg/_dbgfunctions.h"
|
||||
#endif
|
||||
#ifndef _DBG_TYPES_H_
|
||||
#include "dbg_types.h"
|
||||
|
|
Loading…
Reference in New Issue