mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-14 15:41:34 +00:00
Don't assign nil, it is useless, just destroy it: retaining nil is useless.
This commit is contained in:
parent
f5bdb40882
commit
05e4b859be
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2022-01-13 Riccardo Mottola <rm@gnu.org>
|
||||||
|
|
||||||
|
* Framework/PCProjectInspector.m
|
||||||
|
Don't assign nil, it is useless, just destroy it: retaining nil is
|
||||||
|
useless.
|
||||||
|
|
||||||
2022-01-12 Riccardo Mottola <rm@gnu.org>
|
2022-01-12 Riccardo Mottola <rm@gnu.org>
|
||||||
|
|
||||||
* Modules/Editors/ProjectCenter/PCEditor.h
|
* Modules/Editors/ProjectCenter/PCEditor.h
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
|
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
|
||||||
|
|
||||||
Copyright (C) 2000-2021 Free Software Foundation
|
Copyright (C) 2000-2023 Free Software Foundation
|
||||||
|
|
||||||
Authors: Philippe C.D. Robert
|
Authors: Philippe C.D. Robert
|
||||||
Serg Stoyan
|
Serg Stoyan
|
||||||
|
@ -429,7 +429,7 @@
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ASSIGN(searchItems,nil);
|
DESTROY(searchItems);
|
||||||
}
|
}
|
||||||
|
|
||||||
[searchOrderList reloadData];
|
[searchOrderList reloadData];
|
||||||
|
|
Loading…
Reference in a new issue