Veto window closure during scanner discovery in the background.

This commit is contained in:
Saleem Edah-Tally
2025-07-13 20:24:50 +02:00
parent 0f286efe4c
commit c10aac922d
6 changed files with 46 additions and 7 deletions

View File

@@ -99,7 +99,7 @@ public:
BackgroundScannerDiscovery ( XScannerWidget * owner, BackgroundScannerDiscoveryEvent * evh )
{
m_owner = owner;
m_evh = evh;
m_evh = evh; // Owned here.
}
virtual ~BackgroundScannerDiscovery() {};
virtual ExitCode Entry();
@@ -112,6 +112,7 @@ class BackgroundScannerDiscoveryEvent
{
public:
virtual void OnDone();
virtual ~BackgroundScannerDiscoveryEvent();
};