fix_format

Signed-off-by: wanganjie <wanganjie1@huawei.com>
This commit is contained in:
wanganjie 2024-08-01 17:14:14 +08:00
parent daeb74cd74
commit 1d1baeb3b3
3 changed files with 7 additions and 8 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Copyright (c) 2023-2024 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Copyright (c) 2023-2024 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
@ -16,7 +16,6 @@
#ifndef WINDOW_MANAGER_MODAL_SYSTEM_UI_EXTENSION_H
#define WINDOW_MANAGER_MODAL_SYSTEM_UI_EXTENSION_H
#include <mutex>
#include <string>
#include <element_name.h>
#include <ability_connect_callback_interface.h>
@ -35,7 +34,7 @@ public:
private:
class DialogAbilityConnection : public OHOS::AAFwk::AbilityConnectionStub {
public:
explicit DialogAbilityConnection(const AAFwk::Want& want) : want_(want) {};
explicit DialogAbilityConnection(const AAFwk::Want& want) : want_(want) {}
virtual ~DialogAbilityConnection() = default;
void OnAbilityConnectDone(const AppExecFwk::ElementName& element, const sptr<IRemoteObject>& remoteObject,

View File

@ -9015,8 +9015,8 @@ void SceneSessionManager::HideNonSecureFloatingWindows()
for (const auto& [persistentId, session] : nonSystemFloatSceneSessionMap_) {
if (session && session->GetWindowType() == WindowType::WINDOW_TYPE_FLOAT) {
session->NotifyForceHideChange(shouldHide);
TLOGI(WmsLogTag::WMS_UIEXT, "HideNonSecureWindows name=%{public}s, persistentId=%{public}d, "
"shouldHide=%{public}u", session->GetWindowName().c_str(), persistentId, shouldHide);
TLOGI(WmsLogTag::WMS_UIEXT, "name=%{public}s, persistentId=%{public}d, shouldHide=%{public}u",
session->GetWindowName().c_str(), persistentId, shouldHide);
}
}
}
@ -9042,8 +9042,8 @@ void SceneSessionManager::HideNonSecureSubWindows(const sptr<SceneSession>& scen
if (SessionHelper::IsNonSecureToUIExtension(property->GetWindowType()) && !session->IsSystemSpecificSession()) {
session->NotifyForceHideChange(shouldHide);
TLOGI(WmsLogTag::WMS_UIEXT, "HideNonSecureWindows name=%{public}s, persistentId=%{public}d, "
"shouldHide=%{public}u", session->GetWindowName().c_str(), session->GetPersistentId(), shouldHide);
TLOGI(WmsLogTag::WMS_UIEXT, "name=%{public}s, persistentId=%{public}d, shouldHide=%{public}u",
session->GetWindowName().c_str(), session->GetPersistentId(), shouldHide);
}
}
}