Mark process argument of Process_isThread const

This commit is contained in:
Christian Göttsche
2020-10-07 19:02:15 +02:00
committed by cgzones
parent 7fa0f19ffd
commit 41eea8a355
17 changed files with 22 additions and 22 deletions

View File

@ -29,14 +29,14 @@ typedef struct InfoScreenClass_ {
struct InfoScreen_ {
Object super;
Process* process;
const Process* process;
Panel* display;
FunctionBar* bar;
IncSet* inc;
Vector* lines;
};
InfoScreen* InfoScreen_init(InfoScreen* this, Process* process, FunctionBar* bar, int height, const char* panelHeader);
InfoScreen* InfoScreen_init(InfoScreen* this, const Process* process, FunctionBar* bar, int height, const char* panelHeader);
InfoScreen* InfoScreen_done(InfoScreen* this);