From: Kent Sutherland Date: Sun, 11 Dec 2005 19:09:19 +0000 (+0000) Subject: Somehow ITSendAEWithString lost its return in revision 165. Returned the return to... X-Git-Tag: MenuPrefs-1.5.2 X-Git-Url: http://git.ithinksw.org/ITMac.git/commitdiff_plain/refs/tags/MenuPrefs-1.5.2 Somehow ITSendAEWithString lost its return in revision 165. Returned the return to its proper place. --- diff --git a/ITAppleEventTools.m b/ITAppleEventTools.m index a61f5a4..163ff0a 100644 --- a/ITAppleEventTools.m +++ b/ITAppleEventTools.m @@ -45,7 +45,7 @@ NSAppleEventDescriptor *ITSendAEWithKey(FourCharCode reqKey, FourCharCode evClas } NSAppleEventDescriptor *ITSendAEWithString(NSString *sendString, FourCharCode evClass, FourCharCode evID, const ProcessSerialNumber *psn) { - ITSendAEWithStringAndTimeout(sendString, evClass, evID, psn, 60); + return ITSendAEWithStringAndTimeout(sendString, evClass, evID, psn, 60); } NSAppleEventDescriptor *ITSendAEWithStringAndTimeout(NSString *sendString, FourCharCode evClass, FourCharCode evID, const ProcessSerialNumber *psn, long timeout) {