mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
Update for change to NSProcessInfo
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3734 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
663c70afac
commit
2c74111c9e
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Feb 17 9:04:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* Tools/make_services.m: Updated for change in NSProcessInfo
|
||||
* Tools/set_show_service.m: Updated for change in NSProcessInfo
|
||||
|
||||
Wed Feb 17 8:38:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* Source/NSSplitView.m: ([-setDelegate:]) corrected to register
|
||||
|
|
|
@ -98,7 +98,7 @@ main(int argc, char** argv)
|
|||
env = [proc environment];
|
||||
args = [proc arguments];
|
||||
|
||||
for (index = 0; index < [args count]; index++)
|
||||
for (index = 1; index < [args count]; index++)
|
||||
{
|
||||
if ([[args objectAtIndex: index] isEqual: @"--verbose"])
|
||||
verbose = YES;
|
||||
|
|
|
@ -51,7 +51,7 @@ main(int argc, char** argv)
|
|||
|
||||
args = [proc arguments];
|
||||
|
||||
for (index = 0; index < [args count]; index++)
|
||||
for (index = 1; index < [args count]; index++)
|
||||
{
|
||||
if ([[args objectAtIndex: index] isEqual: @"--help"])
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue