Remove extra parentheses which confuse = and == warning.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@32801 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Riccardo Mottola 2011-04-07 16:28:14 +00:00
parent 2651233f3f
commit 2ca9202b6e
2 changed files with 6 additions and 3 deletions

View file

@ -6,6 +6,9 @@
* Framework/PCProjectInspector.m
Warning fix.
* Modules/Preferences/Misc/PCMiscPrefs.m
Remove extra parentheses which confuse = and == warning.
2011-04-06 Fred Kiefer <FredKiefer@gmx.de>
* Modules/Parsers/ProjectCenter/PCParser.m [-parse]: Move the

View file

@ -1,7 +1,7 @@
//
// GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
//
// Copyright (C) 2001-2009 Free Software Foundation
// Copyright (C) 2001-2011 Free Software Foundation
//
// Authors: Sergii Stoian
//
@ -191,7 +191,7 @@
NSFileManager *fm = [NSFileManager defaultManager];
// Choose
if ((sender == debuggerField))
if (sender == debuggerField)
{
path = [debuggerField stringValue];
}
@ -249,7 +249,7 @@
NSWorkspace *ws = [NSWorkspace sharedWorkspace];
// Choose
if ((sender == debuggerField))
if (sender == debuggerField)
{
path = [debuggerField stringValue];
}