Rename MonitorID -> MonitorId

This commit is contained in:
Pierre Krieger 2015-09-24 09:11:59 +02:00
parent aa5f5de109
commit 86fa1b58e5
19 changed files with 106 additions and 106 deletions

View file

@ -105,7 +105,7 @@ use self::ffi::{
static mut jmpbuf: [libc::c_int;27] = [0;27];
#[derive(Clone)]
pub struct MonitorID;
pub struct MonitorId;
pub struct Window {
eagl_context: id,
@ -149,18 +149,18 @@ impl DelegateState {
}
#[inline]
pub fn get_available_monitors() -> VecDeque<MonitorID> {
pub fn get_available_monitors() -> VecDeque<MonitorId> {
let mut rb = VecDeque::new();
rb.push_back(MonitorID);
rb.push_back(MonitorId);
rb
}
#[inline]
pub fn get_primary_monitor() -> MonitorID {
MonitorID
pub fn get_primary_monitor() -> MonitorId {
MonitorId
}
impl MonitorID {
impl MonitorId {
#[inline]
pub fn get_name(&self) -> Option<String> {
Some("Primary".to_string())