tags 645921 + patch thanks
Here is a patch that fixes this issue.
--- aclock.app-0.2.3.orig/main.m +++ aclock.app-0.2.3/main.m @@ -1,10 +1,6 @@ #include <AppKit/AppKit.h> -int main(int argc, char **argv) +int main(int argc, const char **argv) { - CREATE_AUTORELEASE_POOL(pool); - [NSApplication sharedApplication]; - [NSApp run]; - DESTROY(pool); - return 0; + return NSApplicationMain(argc, argv); }