summaryrefslogtreecommitdiff
path: root/UCoreClasses.pas
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@redhat.com>2025-01-04 20:41:26 +0100
committerTomas Bzatek <tbzatek@redhat.com>2025-11-27 21:42:57 +0100
commit90db8b6652f73ddc335922d3a7c593878d83c45e (patch)
tree6b3f8ed57d4dc3358c2965bf41f6e613b8b80bf0 /UCoreClasses.pas
parent63ff1bea9bb1e87a7e2643f680d04f2b9c00d072 (diff)
downloadtuxcmd-90db8b6652f73ddc335922d3a7c593878d83c45e.tar.xz
Basic ListView CSS styling
Diffstat (limited to 'UCoreClasses.pas')
-rw-r--r--UCoreClasses.pas2
1 files changed, 0 insertions, 2 deletions
diff --git a/UCoreClasses.pas b/UCoreClasses.pas
index 7a4a43a..a2b3989 100644
--- a/UCoreClasses.pas
+++ b/UCoreClasses.pas
@@ -100,7 +100,6 @@ begin
Group.GroupName := String(StrToUTF8(grp^.gr_name));
Group.GID := grp^.gr_gid;
Group.Users := TStringList.Create;
- {$R-}
if grp^.gr_mem^ <> nil then begin
i := 0;
repeat
@@ -108,7 +107,6 @@ begin
Inc(i);
until PCharArray(grp^.gr_mem^)[i] = nil;
end;
- {$R+}
GroupList.Add(Group);
grp := getgrent;
end;