修改launcher/launcher/src/main/cpp/swipe_view.cpp文件,消除格式报错

修改groupCount_为groupCount,消除格式报错

Signed-off-by: tongkai0808fh <tongkai5@huawei.com>
This commit is contained in:
tongkai0808fh
2024-04-29 08:43:16 +00:00
committed by Gitee
parent afc02b1210
commit cbc316007f
@@ -130,10 +130,10 @@ void SwipeView::OnSetUpView()
swipe_->SetCurrentPage(0);
}
void BundleInfoScan(BundleInfo* pBundleInfos, int count, int groupCount_, AppEvent, AppInfo)
void BundleInfoScan(BundleInfo* pBundleInfos, int count, int groupCount, AppEvent, AppInfo)
{
for (int j = 0; j < count; j++) {
for (int i = 0; i < groupCount_; i++) {
for (int i = 0; i < groupCount; i++) {
if (memcmp(LAUNCHER_BUNDLE_NAME, pBundleInfos[j].bundleName, strlen(pBundleInfos[j].bundleName)) == 0) {
break;
}