should_close() renamed to is_closed()

This commit is contained in:
Tomaka17 2014-07-30 13:29:28 +02:00
parent 1249ebed80
commit 6d9c5eb2bd
4 changed files with 19 additions and 12 deletions

View file

@ -13,7 +13,7 @@ pub struct Window {
context: ffi::HGLRC,
gl_library: ffi::HMODULE,
events_receiver: Receiver<Event>,
should_close: AtomicBool,
is_closed: AtomicBool,
nosend: NoSend,
}
@ -187,14 +187,14 @@ impl Window {
context: context,
gl_library: gl_library,
events_receiver: events_receiver,
should_close: AtomicBool::new(false),
is_closed: AtomicBool::new(false),
nosend: NoSend,
})
}
pub fn should_close(&self) -> bool {
pub fn is_closed(&self) -> bool {
use std::sync::atomics::Relaxed;
self.should_close.load(Relaxed)
self.is_closed.load(Relaxed)
}
/// Calls SetWindowText on the HWND.
@ -292,7 +292,7 @@ impl Window {
if events.iter().find(|e| match e { &&::Closed => true, _ => false }).is_some() {
use std::sync::atomics::Relaxed;
self.should_close.store(true, Relaxed);
self.is_closed.store(true, Relaxed);
}
events