diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-09-24 09:34:35 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-09-24 09:34:35 +0200 |
commit | 3e11e5ef69cc714c067dff49834f0e782c8f7fc6 (patch) | |
tree | c60477887a81d310e11f37c1e25ec3d5862ead7b /src/api/x11/mod.rs | |
parent | aa5f5de1099fab89f173fb02bae16324946de147 (diff) | |
parent | 86fa1b58e5a44a1711e812ed1e56c0e2c6946eed (diff) | |
download | glutin-3e11e5ef69cc714c067dff49834f0e782c8f7fc6.tar.gz glutin-3e11e5ef69cc714c067dff49834f0e782c8f7fc6.zip |
Merge pull request #612 from tomaka/monitorid-to-monitorid
Rename MonitorID -> MonitorId
Diffstat (limited to 'src/api/x11/mod.rs')
-rw-r--r-- | src/api/x11/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/x11/mod.rs b/src/api/x11/mod.rs index a7c997b..d6a8772 100644 --- a/src/api/x11/mod.rs +++ b/src/api/x11/mod.rs @@ -1,6 +1,6 @@ #![cfg(all(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"), feature = "window"))] -pub use self::monitor::{MonitorID, get_available_monitors, get_primary_monitor}; +pub use self::monitor::{MonitorId, get_available_monitors, get_primary_monitor}; pub use self::window::{Window, XWindow, PollEventsIterator, WaitEventsIterator, Context, WindowProxy}; pub use self::xdisplay::{XConnection, XNotSupported}; |