From ca049437218d85a7518797a7726a0c29a2b97821 Mon Sep 17 00:00:00 2001 From: Kent Sutherland Date: Sun, 11 Dec 2005 19:09:19 +0000 Subject: [PATCH] Somehow ITSendAEWithString lost its return in revision 165. Returned the return to its proper place. --- ITAppleEventTools.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.20.1