mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-17 08:01:24 +00:00
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:
parent
2651233f3f
commit
2ca9202b6e
2 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue