aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/x11/mod.rs')
-rw-r--r--src/x11/mod.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/x11/mod.rs b/src/x11/mod.rs
index cc70a01..e00dc50 100644
--- a/src/x11/mod.rs
+++ b/src/x11/mod.rs
@@ -1,4 +1,4 @@
-use {Event, Hints, MonitorID};
+use {Event, Hints};
use libc;
use std::{mem, ptr};
use std::sync::atomics::AtomicBool;
@@ -14,6 +14,8 @@ pub struct Window {
wm_delete_window: ffi::Atom,
}
+pub struct MonitorID(uint);
+
impl Window {
pub fn new(dimensions: Option<(uint, uint)>, title: &str, hints: &Hints, _: Option<MonitorID>)
-> Result<Window, String>