|
From: Andrew M. <fit...@us...> - 2008-06-24 20:14:14
|
Update of /cvsroot/radmind/radmind-assistant/rsm In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv12924 Modified Files: RAServerController.h RAServerController.m Log Message: Improved error reporting. Index: RAServerController.h =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/RAServerController.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** RAServerController.h 18 Mar 2008 21:20:35 -0000 1.7 --- RAServerController.h 24 Jun 2008 20:14:11 -0000 1.8 *************** *** 79,83 **** - ( void )readRadmindServerConfigFile; ! - ( void )toolError: ( char * )error fromThreadWithID: ( int )ID; - ( void )authorizationFailedInThreadWithID: ( int )ID; --- 79,83 ---- - ( void )readRadmindServerConfigFile; ! - ( oneway void )toolError: ( NSString * )error fromThreadWithID: ( int )ID; - ( void )authorizationFailedInThreadWithID: ( int )ID; Index: RAServerController.m =================================================================== RCS file: /cvsroot/radmind/radmind-assistant/rsm/RAServerController.m,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** RAServerController.m 18 Mar 2008 21:20:35 -0000 1.22 --- RAServerController.m 24 Jun 2008 20:14:11 -0000 1.23 *************** *** 7,11 **** #import "RAServerAuth.h" #import "RAEditorLauncher.h" - #import "RAAuthKiller.h" #import "RSMLoadsetEditor.h" #import "RSMLoadsetManager.h" --- 7,10 ---- *************** *** 720,724 **** } ! - ( void )toolError: ( char * )error fromThreadWithID: ( int )ID { if ( ID != [ self configHelperThreadID ] ) { --- 719,723 ---- } ! - ( oneway void )toolError: ( NSString * )error fromThreadWithID: ( int )ID { if ( ID != [ self configHelperThreadID ] ) { *************** *** 727,731 **** NSRunAlertPanel( NSLocalizedString( @"Error", @"Error" ), ! @"%s", NSLocalizedString( @"OK", @"OK" ), @"", @"", error ); } --- 726,730 ---- NSRunAlertPanel( NSLocalizedString( @"Error", @"Error" ), ! @"%@", NSLocalizedString( @"OK", @"OK" ), @"", @"", error ); } |