Changeset 472
- Timestamp:
- 03/06/2008 14:40:22 (6 months ago)
- Location:
- trunk/shoes
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/shoes/app.c
r465 r472 1594 1594 1595 1595 HIViewFindByID(HIViewGetRoot(app->os.window), kHIViewWindowContentID, &app->slot.view); 1596 1597 if (PasteboardCreate(kPasteboardClipboard, &shoes_world->os.clip) != noErr) {1598 INFO("Apple Pasteboard create failed.\n", 0);1599 }1600 1596 #endif 1601 1597 -
trunk/shoes/world.c
r463 r472 51 51 ruby_init(); 52 52 shoes_ruby_init(); 53 shoes_world = shoes_world_alloc(); 53 54 #ifdef SHOES_QUARTZ 54 55 shoes_app_quartz_install(); 55 56 shoes_slot_quartz_register(); 57 if (PasteboardCreate(kPasteboardClipboard, &shoes_world->os.clip) != noErr) { 58 INFO("Apple Pasteboard create failed.\n", 0); 59 } 56 60 #endif 57 shoes_world = shoes_world_alloc();58 61 #ifdef SHOES_WIN32 59 62 shoes_world->os.instance = inst;
