diff options
author | Ryan Stewart <ryan@binsoftware.com> | 2015-04-02 15:19:51 -0700 |
---|---|---|
committer | Ryan Stewart <ryan@binsoftware.com> | 2015-04-02 15:19:51 -0700 |
commit | 348de5cbe47eee55b449f6a8dd7d8b3eec4142a6 (patch) | |
tree | fe80ef5b555e6a10d467699c5120cccfc383bc9d | |
parent | 2e1fe8283f82208375737674a731d2fe3c5e4539 (diff) | |
download | glutin-348de5cbe47eee55b449f6a8dd7d8b3eec4142a6.tar.gz glutin-348de5cbe47eee55b449f6a8dd7d8b3eec4142a6.zip |
updating use statements from recent rust-cocoa module changes
-rw-r--r-- | src/cocoa/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cocoa/mod.rs b/src/cocoa/mod.rs index c26510c..e756aba 100644 --- a/src/cocoa/mod.rs +++ b/src/cocoa/mod.rs @@ -13,7 +13,9 @@ use native_monitor::NativeMonitorId; use objc::runtime::{Class, Object, Sel, BOOL, YES, NO}; use objc::declare::ClassDecl; -use cocoa::base::{id, nil, NSUInteger}; +use cocoa::base::{id, nil}; +use cocoa::foundation::{NSAutoreleasePool, NSDate, NSDefaultRunLoopMode, NSPoint, NSRect, NSSize, + NSString, NSUInteger}; use cocoa::appkit; use cocoa::appkit::*; use cocoa::appkit::NSEventSubtype::*; |