GUI: AStyle
This commit is contained in:
parent
24972c0278
commit
1d28f08fd3
|
@ -41,7 +41,7 @@ SymbolView::SymbolView(QWidget* parent) : QWidget(parent), ui(new Ui::SymbolView
|
|||
mModuleList->mSearchList->addColumnAt(charwidth * 2 * sizeof(dsint) + 8, tr("Base"), false);
|
||||
mModuleList->mSearchList->addColumnAt(300, "Module", true);
|
||||
mModuleList->mSearchList->addColumnAt(charwidth * 8, tr("Party"), false);
|
||||
mModuleList->mSearchList->addColumnAt(charwidth * 60, tr("Path"), false);
|
||||
mModuleList->mSearchList->addColumnAt(charwidth * 60, tr("Path"), false);
|
||||
|
||||
// Setup symbol list
|
||||
mSearchListView->mList->enableMultiSelection(true);
|
||||
|
|
|
@ -54,7 +54,8 @@ void XrefBrowseDialog::setup(duint address, QString command)
|
|||
for(duint i = 0; i < mXrefInfo.refcount; i++)
|
||||
data.push_back(mXrefInfo.references[i]);
|
||||
|
||||
std::sort(data.begin(), data.end(), [](const XREF_RECORD A, const XREF_RECORD B){
|
||||
std::sort(data.begin(), data.end(), [](const XREF_RECORD A, const XREF_RECORD B)
|
||||
{
|
||||
return ((A.type < B.type) || (A.addr < B.addr));
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue