mirror of
https://github.com/Artikash/Textractor.git
synced 2024-12-23 08:54: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);
|
||||||
|
@ -388,7 +388,7 @@ private:
|
|||||||
for (term = term.left(500); !term.isEmpty(); term.chop(1))
|
for (term = term.left(500); !term.isEmpty(); term.chop(1))
|
||||||
for (const auto& [rootTerm, definition, inflections] : LookupDefinitions(term, foundDefinitions))
|
for (const auto& [rootTerm, definition, inflections] : LookupDefinitions(term, foundDefinitions))
|
||||||
definitions.push_back(
|
definitions.push_back(
|
||||||
QStringLiteral("<h3>%1 (%5/%6)</h3><small>%2 %3</small><p>%4</p>").arg(
|
QStringLiteral("<h3>%1 (%5/%6)</h3><small>%2%3</small><p>%4</p>").arg(
|
||||||
term,
|
term,
|
||||||
rootTerm.split("<<")[0],
|
rootTerm.split("<<")[0],
|
||||||
inflections.join(""),
|
inflections.join(""),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user