diff options
author | James Ravenscroft | 2014-12-26 13:47:21 +0000 |
---|---|---|
committer | James Ravenscroft | 2014-12-26 13:47:21 +0000 |
commit | 2ebcb68cd4c88891f42da1e5c1c29fefea947f23 (patch) | |
tree | ee18f2a6fa1def91fcaaae53ce708d60f2ad58ac /src/event.rs | |
parent | 26a8e0c20cc1a300f8d03e152c9910839ce1cd53 (diff) | |
download | irsc-2ebcb68cd4c88891f42da1e5c1c29fefea947f23.tar.gz irsc-2ebcb68cd4c88891f42da1e5c1c29fefea947f23.tar.xz irsc-2ebcb68cd4c88891f42da1e5c1c29fefea947f23.zip |
No more warnings about deprecation!
Diffstat (limited to 'src/event.rs')
-rw-r--r-- | src/event.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/event.rs b/src/event.rs index aef34f9..b8e9743 100644 --- a/src/event.rs +++ b/src/event.rs @@ -1,5 +1,7 @@ use ident::Ident; +use std::borrow::ToOwned; + #[deriving(Clone)] pub struct Event { pub prefix: String, @@ -17,7 +19,7 @@ pub const PRIVMSG: &'static str = "PRIVMSG"; fn join(v: Vec<String>, from: uint) -> String { let mut msg = if v[from].chars().next().unwrap() == ':' { - v[from][][1..].into_string() + v[from][][1..].to_owned() } else { v[from].clone() }; for m in v.iter().skip(from + 1) { msg.push_str(" "); |