Merge pull request #3202 from bastik-1001/master
Fix typos, tiny improvments.
This commit is contained in:
commit
fbcc3d22c6
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2004-2020 Sandboxie Holdings, LLC
|
* Copyright 2004-2020 Sandboxie Holdings, LLC
|
||||||
* Copyright 2020-2021 David Xanatos, xanasoft.com
|
* Copyright 2020-2023 David Xanatos, xanasoft.com
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -1044,10 +1044,10 @@ BOOL ProcessServer::RunSandboxedSetDacl(
|
||||||
//
|
//
|
||||||
|
|
||||||
//
|
//
|
||||||
// in Sandboxie version 5.57 instead of using the anonymous SID
|
// since Sandboxie version 5.57 instead of using the anonymous SID
|
||||||
// we can use box specific custom SIDs,
|
// we can use box specific custom SIDs,
|
||||||
// when comparing we skip the revision and the SubAuthorityCount
|
// when comparing we skip the revision and the SubAuthorityCount
|
||||||
// also we conpare only the domain portion of the SID as the rest
|
// also we compare only the domain portion of the SID as the rest
|
||||||
// will be different for each box
|
// will be different for each box
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// Keeps submenus visible when the mosue leaves
|
// Keeps submenus visible when the mouse leaves them
|
||||||
//
|
//
|
||||||
|
|
||||||
class KeepSubMenusVisibleStyle : public QProxyStyle {
|
class KeepSubMenusVisibleStyle : public QProxyStyle {
|
||||||
|
@ -164,4 +164,4 @@ public:
|
||||||
// For all other controls, draw the default
|
// For all other controls, draw the default
|
||||||
QProxyStyle::drawControl(element, opt, p, widget);
|
QProxyStyle::drawControl(element, opt, p, widget);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -132,7 +132,7 @@ CTraceTree::CTraceTree(QWidget* parent)
|
||||||
QByteArray Split = theConf->GetBlob("MainWindow/TraceSplitter");
|
QByteArray Split = theConf->GetBlob("MainWindow/TraceSplitter");
|
||||||
if(!Split.isEmpty())
|
if(!Split.isEmpty())
|
||||||
m_pSplitter->restoreState(Split);
|
m_pSplitter->restoreState(Split);
|
||||||
//else { // by default colapse the details panel
|
//else { // by default collapse the details panel
|
||||||
// auto Sizes = m_pSplitter->sizes();
|
// auto Sizes = m_pSplitter->sizes();
|
||||||
// Sizes[1] = 0;
|
// Sizes[1] = 0;
|
||||||
// m_pSplitter->setSizes(Sizes);
|
// m_pSplitter->setSizes(Sizes);
|
||||||
|
|
Loading…
Reference in New Issue