fix form timer bugs

Signed-off-by: zhongjianfei <zhongjianfei@huawei.com>
Change-Id: If59592e37db4a1a152ff94e7a27fbdb96ec8434f
This commit is contained in:
zhongjianfei
2022-03-17 16:24:44 +08:00
parent 05a4978df4
commit 79ee840586
4 changed files with 4 additions and 4 deletions
@@ -32,7 +32,7 @@ struct ExtensionFormInfo {
bool formVisibleNotify = false;
bool isDefault = false;
bool updateEnabled = false;
std::string scheduledUpdateTime = "0:0";
std::string scheduledUpdateTime = "";
int32_t updateDuration = 0;
std::int32_t defaultDimension;
std::vector<int32_t> supportDimensions {};
@@ -41,7 +41,7 @@ struct FormInfo : public Parcelable {
std::string jsComponentName;
std::string deepLink;
std::string formConfigAbility;
std::string scheduledUpdateTime = "0:0";
std::string scheduledUpdateTime = "";
std::string src;
FormWindow window;
int32_t descriptionId = 0;
@@ -57,7 +57,7 @@ struct ExtensionFormProfileInfo {
bool formVisibleNotify = false;
bool isDefault = false;
bool updateEnabled = false;
std::string scheduledUpdateTime = "0:0";
std::string scheduledUpdateTime = "";
int32_t updateDuration = 0;
std::string defaultDimension;
std::vector<std::string> supportDimensions {};
+1 -1
View File
@@ -201,7 +201,7 @@ struct Forms {
std::vector<std::string> landscapeLayouts;
std::vector<std::string> portraitLayouts;
bool updateEnabled = false;
std::string scheduledUpdateTime = "0:0";
std::string scheduledUpdateTime = "";
int32_t updateDuration = 0;
std::string deepLink;
std::string formConfigAbility;