VoiceMac/Classes/Theme Tester/main.m
2010-09-20 19:44:17 -05:00

16 lines
399 B
Objective-C

//
// main.m
// Voice Mac
//
// Created by Mr. Gecko on 7/24/09.
// Copyright Mr. Gecko's Media 2009. All rights reserved.
//
#import <Cocoa/Cocoa.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool *pool = [NSAutoreleasePool new];
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"WebKitDeveloperExtras"];
[pool drain];
return NSApplicationMain(argc, (const char **)argv);
}