mirror of
https://github.com/silverf0x/RpcView
synced 2026-06-08 17:26:38 +00:00
Increase compiler warning level to W4 with WX
This commit is contained in:
@@ -20,9 +20,9 @@ QString GetProceduresWidgetColumName(ProceduresWigetColumn_T ProceduresWigetColu
|
||||
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
void ProceduresWidget_C::reset(ULONG Pid)
|
||||
void ProceduresWidget_C::reset(ULONG pid)
|
||||
{
|
||||
this->Pid = Pid;
|
||||
this->Pid = pid;
|
||||
pProcedures->clear();
|
||||
}
|
||||
|
||||
@@ -82,14 +82,14 @@ bool ProceduresWidget_C::AddProcedure(quint32 ProcIdx, WCHAR* pSymbolName, VOID*
|
||||
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
void ProceduresWidget_C::SetAddressRepresentation(AddressRepresentation_T AddressRepresentation)
|
||||
void ProceduresWidget_C::SetAddressRepresentation(AddressRepresentation_T AddrRepresentation)
|
||||
{
|
||||
QTreeWidgetItem* pProcedure;
|
||||
quintptr AbsoluteAddr;
|
||||
|
||||
this->AddressRepresentation = AddressRepresentation;
|
||||
this->AddressRepresentation = AddrRepresentation;
|
||||
|
||||
switch (AddressRepresentation)
|
||||
switch (AddrRepresentation)
|
||||
{
|
||||
case AddressRepresentation_RVA:
|
||||
for (int i = 0; i < pProcedures->topLevelItemCount(); i++)
|
||||
|
||||
Reference in New Issue
Block a user