Upgrade Rust and pixman

This commit is contained in:
Brian Anderson 2013-01-30 14:34:47 -08:00
parent 431ea05c63
commit 56c0b1a7bc
8 changed files with 9 additions and 9 deletions

@ -1 +1 @@
Subproject commit a5e5179b5624c99c812e9bf6e7b907e355a811e8
Subproject commit 958bd334b3c17f529c80f2eeef4224f45c62f292

@ -1 +1 @@
Subproject commit a8bdb2f58bf415deb5a1bf1407f17bcd09f2d965
Subproject commit 8c20ce62b372db2015856ec7ef7d5da36da705f7

@ -1 +1 @@
Subproject commit b108b2b8d4a53ef1d9720dfc484b971d19f9817d
Subproject commit c6dc3d8b0a3b94b7134213a4d01599484d4a8927

@ -1 +1 @@
Subproject commit ea2221e1ffcce397a0b742159a7f3def05ece039
Subproject commit 990b2751019a750d23d22ad777fe54d786aa1ce8

@ -1 +1 @@
Subproject commit fb1ea4368fd766239bd3578d66c4218fa46f1e5e
Subproject commit 4ef941f09e58c122c96f15cecc7bd97e145bed01

@ -1 +1 @@
Subproject commit 6e163d5bab3bef6cebe7660867388da5a8681b9f
Subproject commit d54ba38e73e2d46f713cf148a44a829d41db44bd

@ -1 +1 @@
Subproject commit fbcc1ad6d7b44a19e99e70f5ab6e04f951f7811f
Subproject commit 58fb6a2570eabc2de73727bc022e3247c99e5bba

View file

@ -18,7 +18,7 @@ use gfx_font::FontHandle;
use gfx_font_list::{FontEntry, FontFamily, FontFamilyMap};
use core::dvec::DVec;
use core::send_map::{linear, SendMap};
use core::hashmap::linear::LinearMap;
pub struct QuartzFontListHandle {
fctx: QuartzFontContextHandle,
@ -31,7 +31,7 @@ pub impl QuartzFontListHandle {
fn get_available_families() -> FontFamilyMap {
let family_names = quartz::font_list::core_text::font_collection::get_family_names();
let mut family_map : FontFamilyMap = linear::LinearMap();
let mut family_map : FontFamilyMap = LinearMap::new();
for family_names.each |strref: &CFStringRef| {
let family_name = CFWrapper::wrap_shared(*strref).to_str();
debug!("Creating new FontFamily for family: %s", family_name);