Lots of small tweaks to make -gui compile without warnings with clang.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@30119 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
theraven 2010-04-10 20:33:30 +00:00
parent 3529a217e2
commit 3da9ac45b7
13 changed files with 38 additions and 31 deletions

View file

@ -2326,12 +2326,12 @@ static NSColor *dtxtCol;
/* Because of performance issues (and because so the doc says) only
pointers to the objects are copied. We need to RETAIN them all
though. */
TEST_RETAIN (_font);
TEST_RETAIN (_object_value);
TEST_RETAIN (_menu);
TEST_RETAIN (_cell_image);
TEST_RETAIN (_formatter);
TEST_RETAIN (_represented_object);
_font = TEST_RETAIN (_font);
_object_value = TEST_RETAIN (_object_value);
_menu = TEST_RETAIN (_menu);
_cell_image = TEST_RETAIN (_cell_image);
_formatter = TEST_RETAIN (_formatter);
_formatter = TEST_RETAIN (_represented_object);
return c;
}