Replace the remaining to_string calls by into_string calls.

This commit is contained in:
Ms2ger 2014-12-27 16:48:27 +01:00
parent 37a97f3273
commit b6117a57aa
12 changed files with 43 additions and 42 deletions

View file

@ -76,7 +76,7 @@ pub extern "C" fn cef_initialize(args: *const cef_main_args_t,
message_queue.replace(Some(RefCell::new(Vec::new())));
let urls = vec![HOME_URL.to_string()];
let urls = vec![HOME_URL.into_string()];
opts::set_opts(opts::Opts {
urls: urls,
n_paint_threads: 1,