Merge pull request #91 from tomaka/fail-to-panic

fail! -> panic!
This commit is contained in:
tomaka 2014-10-30 10:07:43 +01:00
commit 118b7d32b4
3 changed files with 4 additions and 4 deletions

View file

@ -101,7 +101,7 @@ pub fn get_primary_monitor() -> MonitorID {
}
}
fail!("Failed to find the primary monitor")
panic!("Failed to find the primary monitor")
}
impl MonitorID {

View file

@ -510,7 +510,7 @@ impl Window {
pub unsafe fn make_current(&self) {
let res = ffi::glx::MakeCurrent(self.display, self.window, self.context);
if res == 0 {
fail!("glx::MakeCurrent failed");
panic!("glx::MakeCurrent failed");
}
}

View file

@ -9,7 +9,7 @@ pub fn get_available_monitors() -> Vec<MonitorID> {
let nb_monitors = unsafe {
let display = ffi::XOpenDisplay(ptr::null());
if display.is_null() {
fail!("get_available_monitors failed");
panic!("get_available_monitors failed");
}
let nb_monitors = ffi::XScreenCount(display);
ffi::XCloseDisplay(display);
@ -26,7 +26,7 @@ pub fn get_primary_monitor() -> MonitorID {
let primary_monitor = unsafe {
let display = ffi::XOpenDisplay(ptr::null());
if display.is_null() {
fail!("get_available_monitors failed");
panic!("get_available_monitors failed");
}
let primary_monitor = ffi::XDefaultScreen(display);
ffi::XCloseDisplay(display);