Changeset 108

Show
Ignore:
Timestamp:
02/03/08 21:14:12 (10 months ago)
Author:
cordney
Message:

[fix] cocoa.m: add missing semicolons [fix] remove obsolete import QDocumentQuartzView.h [fix] set XCode configuration to precompile Q_Prefix.pch [fix] added some useful strings to Info.plist

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/English.lproj/InfoPlist.strings

    r106 r108  
    11/* Localized versions of Info.plist keys */ 
    22 
    3 NSHumanReadableCopyright = "© __MyCompanyName__, 2007"; 
     3NSHumanReadableCopyright = "© Mike Kronenberg, 2008"; 
  • trunk/Info.plist

    r106 r108  
    4141        <string>????</string> 
    4242        <key>CFBundleVersion</key> 
    43         <string>0.9.1d94</string> 
     43        <string>Q₂ (0.9.1d107)</string> 
    4444        <key>NSMainNibFile</key> 
    4545        <string>MainMenu</string> 
  • trunk/Q.xcodeproj/project.pbxproj

    r106 r108  
    578578                                GCC_GENERATE_DEBUGGING_SYMBOLS = NO; 
    579579                                GCC_MODEL_TUNING = G5; 
     580                                GCC_PRECOMPILE_PREFIX_HEADER = YES; 
     581                                GCC_PREFIX_HEADER = Q_Prefix.pch; 
    580582                                INFOPLIST_FILE = Info.plist; 
    581583                                INSTALL_PATH = "$(HOME)/Applications"; 
  • trunk/QApplication/QApplication.m

    r107 r108  
    2626 
    2727#import "../QDocument/QDocument.h" 
    28 #import "../QDocument/QDocumentQuartzView.h" 
    2928#import "../FSControls/FSController.h" 
    3029 
  • trunk/qemu/patches/cocoa.m

    r106 r108  
    261261static void cocoa_update(DisplayState *ds, int x, int y, int w, int h) 
    262262{ 
    263         Q_DEBUG("qemu_cocoa: cocoa_update x=%d y=%d w=%d h=%d", x, y, w, h) 
     263        Q_DEBUG("qemu_cocoa: cocoa_update x=%d y=%d w=%d h=%d", x, y, w, h); 
    264264 
    265265 
     
    281281static void cocoa_resize(DisplayState *ds, int w, int h) 
    282282{ 
    283         Q_DEBUG("qemu_cocoa: cocoa_resize w=%d h=%d", w, h) 
     283        Q_DEBUG("qemu_cocoa: cocoa_resize w=%d h=%d", w, h); 
    284284 
    285285 
     
    321321static void cocoa_refresh(DisplayState *ds) 
    322322{ 
    323         Q_DEBUG("qemu_cocoa: cocoa_refresh") 
     323        Q_DEBUG("qemu_cocoa: cocoa_refresh"); 
    324324 
    325325    // update vga state 
     
    423423static void cocoa_cleanup(void)  
    424424{ 
    425         Q_DEBUG("qemu_cocoa: cocoa_cleanup") 
     425        Q_DEBUG("qemu_cocoa: cocoa_cleanup"); 
    426426 
    427427} 
     
    431431void cocoa_display_init(DisplayState *ds, int full_screen) 
    432432{ 
    433 Q_DEBUG("qemu_cocoa: cocoa_display_init") 
     433Q_DEBUG("qemu_cocoa: cocoa_display_init"); 
    434434 
    435435    // register vga outpu callbacks 
     
    473473- (void)applicationDidFinishLaunching: (NSNotification *) note 
    474474{ 
    475         Q_DEBUG("qemu_cocoa: applicationDidFinishLaunching") 
     475        Q_DEBUG("qemu_cocoa: applicationDidFinishLaunching"); 
    476476 
    477477 
     
    500500- (void)applicationWillTerminate:(NSNotification *)aNotification 
    501501{ 
    502         Q_DEBUG("qemu_cocoa: applicationWillTerminate") 
     502        Q_DEBUG("qemu_cocoa: applicationWillTerminate"); 
    503503 
    504504    // unregister 
     
    518518- (void)startEmulationWithArgc:(int)argc argv:(char**)argv 
    519519{ 
    520         Q_DEBUG("qemu_cocoa: startEmulationWithArgc: %D", argc) 
     520        Q_DEBUG("qemu_cocoa: startEmulationWithArgc: %D", argc); 
    521521 
    522522    int status;