aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11
diff options
context:
space:
mode:
Diffstat (limited to 'src/x11')
-rw-r--r--src/x11/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/x11/mod.rs b/src/x11/mod.rs
index 6e50903..f157237 100644
--- a/src/x11/mod.rs
+++ b/src/x11/mod.rs
@@ -30,6 +30,10 @@ impl MonitorID {
pub fn get_name(&self) -> Option<String> {
Some("<Unknown>".to_string())
}
+
+ pub fn get_dimensions(&self) -> (uint, uint) {
+ unimplemented!()
+ }
}
impl Window {