This commit is contained in:
DavidXanatos 2022-07-22 22:47:52 +02:00
parent 0d9e06b861
commit 244453ed55
3 changed files with 20 additions and 0 deletions

View File

@ -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

View File

@ -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;

View File

@ -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);