Go to the source code of this file.
Functions | |
void | Growl (tString title, tString message) |
Definition at line 33 of file AAGrowlBridge.mm.
References AAGrowlPlugin::growl:message:.
Referenced by se_eventNotificationHandle().
00034 { 00035 NSString *nstitle, *nsmessage; 00036 nstitle = [[NSString alloc] initWithCString:title.c_str()]; 00037 nsmessage = [[NSString alloc] initWithCString:message.c_str()]; 00038 [AAGrowlPlugin growl:nstitle message:nsmessage]; 00039 [nstitle release]; 00040 [nsmessage release]; 00041 }