2
1
Fork 0

typegen: hyprland module + lockfile update

This commit is contained in:
outfoxxed 2024-05-05 04:16:17 -07:00
parent 3e1b15d759
commit 57ba1768f8
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
4 changed files with 13 additions and 5 deletions

View file

@ -119,6 +119,10 @@ pub fn resolve_types(
list = true;
} else if ctype.starts_with("QList<") {
ctype = &ctype[6..ctype.len() - 1];
if ctype.ends_with('*') {
ctype = &ctype[0..ctype.len() - 1];
}
list = true;
}