1.2.5b
This commit is contained in:
parent
0d9e06b861
commit
244453ed55
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file.
|
|||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
|
||||
|
||||
|
||||
## [1.2.5b / 5.57.5] - 2022-07-22
|
||||
|
||||
### Changed
|
||||
- improved a few icons
|
||||
|
||||
### Fixed
|
||||
- fixed issue with delete all button [#2043](https://github.com/sandboxie-plus/Sandboxie/issues/2043)
|
||||
- fixed issue with box prefs [#2046](https://github.com/sandboxie-plus/Sandboxie/issues/2046)
|
||||
|
||||
|
||||
|
||||
|
||||
## [1.2.5 / 5.57.5] - 2022-07-22
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -966,6 +966,11 @@ void CSbieView::OnSandBoxAction()
|
|||
OnSandBoxAction(qobject_cast<QAction*>(sender()), m_CurSandBoxes);
|
||||
}
|
||||
|
||||
void CSbieView::OnSandBoxAction(QAction* pAction)
|
||||
{
|
||||
OnSandBoxAction(pAction, m_CurSandBoxes);
|
||||
}
|
||||
|
||||
void CSbieView::OnSandBoxAction(QAction* Action, const QList<CSandBoxPtr>& SandBoxes)
|
||||
{
|
||||
QList<SB_STATUS> Results;
|
||||
|
|
|
@ -50,6 +50,7 @@ private slots:
|
|||
void OnGroupAction();
|
||||
void OnGroupAction(QAction* pAction);
|
||||
void OnSandBoxAction();
|
||||
void OnSandBoxAction(QAction* pAction);
|
||||
void OnSandBoxAction(QAction* pAction, const QList<CSandBoxPtr>& SandBoxes);
|
||||
void OnProcessAction();
|
||||
void OnProcessAction(QAction* pAction, const QList<CBoxedProcessPtr>& Processes);
|
||||
|
|
Loading…
Reference in New Issue