Skip to content

Commit

Permalink
UI: ConfManager::updateDriverServices: Only own service processes
Browse files Browse the repository at this point in the history
  • Loading branch information
tnodir committed Jul 6, 2024
1 parent 454779a commit c630b51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ui/conf/confmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -834,9 +834,9 @@ void ConfManager::updateServices()
auto serviceInfoManager = IoC<ServiceInfoManager>();

int runningServicesCount = 0;
const QVector<ServiceInfo> services =
serviceInfoManager->loadServiceInfoList(ServiceInfo::TypeWin32, ServiceInfo::StateAll,
/*displayName=*/false, &runningServicesCount);
const QVector<ServiceInfo> services = serviceInfoManager->loadServiceInfoList(
ServiceInfo::TypeWin32OwnProcess, ServiceInfo::StateAll,
/*displayName=*/false, &runningServicesCount);

serviceInfoManager->monitorServices(services);

Expand Down

0 comments on commit c630b51

Please sign in to comment.