mirror of
https://github.com/Artikash/Textractor.git
synced 2024-12-23 17:04:12 +08:00
tiny fixes
This commit is contained in:
parent
0688daf1da
commit
ffff4f2eb9
@ -259,7 +259,7 @@ namespace
|
|||||||
|
|
||||||
HCode += L'@' + HexString(hp.address);
|
HCode += L'@' + HexString(hp.address);
|
||||||
if (hp.type & MODULE_OFFSET) HCode += L':' + std::wstring(hp.module);
|
if (hp.type & MODULE_OFFSET) HCode += L':' + std::wstring(hp.module);
|
||||||
if (hp.type & FUNCTION_OFFSET) HCode += L':' + std::wstring(hp.function, hp.function + MAX_MODULE_SIZE);
|
if (hp.type & FUNCTION_OFFSET) HCode += L':' + StringToWideString(hp.function);
|
||||||
|
|
||||||
return HCode;
|
return HCode;
|
||||||
}
|
}
|
||||||
|
@ -435,7 +435,7 @@ void MainWindow::FindHooks()
|
|||||||
SearchParam sp = {};
|
SearchParam sp = {};
|
||||||
sp.codepage = Host::defaultCodepage;
|
sp.codepage = Host::defaultCodepage;
|
||||||
bool searchForText = false, customSettings = false;
|
bool searchForText = false, customSettings = false;
|
||||||
QRegularExpression filter(".", QRegularExpression::DotMatchesEverythingOption);
|
QRegularExpression filter(".", QRegularExpression::UseUnicodePropertiesOption | QRegularExpression::DotMatchesEverythingOption);
|
||||||
|
|
||||||
QDialog dialog(this, Qt::WindowCloseButtonHint);
|
QDialog dialog(this, Qt::WindowCloseButtonHint);
|
||||||
QFormLayout layout(&dialog);
|
QFormLayout layout(&dialog);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user