Update of /cvsroot/radmind/radmind-assistant
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10666
Modified Files:
RCMPreferences.m
Log Message:
Fixed lame crasher due to missing parameter.
Index: RCMPreferences.m
===================================================================
RCS file: /cvsroot/radmind/radmind-assistant/RCMPreferences.m,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** RCMPreferences.m 8 Mar 2006 18:32:26 -0000 1.40
--- RCMPreferences.m 27 Mar 2006 18:51:53 -0000 1.41
***************
*** 848,852 ****
if ( [[ UMLoginItem sharedLoginItem ]
addLoginItem: rumPath hide: NO ] == NO ) {
! NSLog( @"failed to add %@ to AutoLaunchedApplicationDictionary" );
return;
}
--- 848,853 ----
if ( [[ UMLoginItem sharedLoginItem ]
addLoginItem: rumPath hide: NO ] == NO ) {
! NSLog( @"failed to add %@ to AutoLaunchedApplicationDictionary",
! rumPath );
return;
}
|