summaryrefslogtreecommitdiffstats
path: root/ProcessList.c
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2021-03-12 16:46:55 +0100
committerChristian Göttsche <cgzones@googlemail.com>2021-03-12 16:46:55 +0100
commitd37d66bb3a089b9e66c6629a4855560984ac720d (patch)
tree1bc77669da335f53eff7d64687809c748a36c34c /ProcessList.c
parent3f99c2de245e950b8004fde023e45a0dd6389381 (diff)
InfoScreen/ProcessList: do not access Vector internals
Use wrapper function to encapsulate the Vector structure
Diffstat (limited to 'ProcessList.c')
-rw-r--r--ProcessList.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ProcessList.c b/ProcessList.c
index 869bde44..cb89b720 100644
--- a/ProcessList.c
+++ b/ProcessList.c
@@ -202,7 +202,7 @@ static void ProcessList_updateTreeSetLayer(ProcessList* this, unsigned int leftB
if (layerSize == 0)
return;
- Vector* layer = Vector_new(this->processes->type, false, layerSize);
+ Vector* layer = Vector_new(Vector_type(this->processes), false, layerSize);
// Find all processes on the same layer (process with the same `deep` value
// and included in a range from `leftBound` to `rightBound`).

© 2014-2024 Faster IT GmbH | imprint | privacy policy