新增关于窗口

This commit is contained in:
2024-04-24 20:33:04 +08:00
parent 060fbf810b
commit addc82cbb2
9 changed files with 182 additions and 3 deletions

View File

@@ -79,6 +79,9 @@ QStringList KernelInformation::get_system(int value) const
for(int i = 0; i < count; i++) {
result << list.at(i).toString();
}
if(!result.count()) {
result << "all";
}
return result;
}
@@ -90,6 +93,9 @@ QStringList KernelInformation::get_arch(int value) const
for(int i = 0; i < count; i++) {
result << list.at(i).toString();
}
if(!result.count()) {
result << "all";
}
return result;
}