aboutsummaryrefslogtreecommitdiffstats
path: root/src/win32/mod.rs
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-04-03 08:33:51 +0200
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-04-03 09:42:45 +0200
commit0f7bd9071e9b64acb9f13e253d49c3790e50d560 (patch)
treeb35fe22f55ef94a02ab01bf6f5271407ce4ad204 /src/win32/mod.rs
parent1c74614c4ace993e655e18dafdeb9d5ceef9ea06 (diff)
downloadglutin-0f7bd9071e9b64acb9f13e253d49c3790e50d560.tar.gz
glutin-0f7bd9071e9b64acb9f13e253d49c3790e50d560.zip
Remove all features for 1.0 beta
Diffstat (limited to 'src/win32/mod.rs')
-rw-r--r--src/win32/mod.rs10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/win32/mod.rs b/src/win32/mod.rs
index 2769bf1..be72d53 100644
--- a/src/win32/mod.rs
+++ b/src/win32/mod.rs
@@ -2,6 +2,8 @@ use std::sync::atomic::AtomicBool;
use std::mem;
use std::ptr;
use std::ffi::CString;
+use std::ffi::OsStr;
+use std::os::windows::ffi::OsStrExt;
use std::sync::{
Arc,
Mutex
@@ -109,10 +111,11 @@ impl Window {
///
/// Calls SetWindowText on the HWND.
pub fn set_title(&self, text: &str) {
+ let text = OsStr::from_str(text).encode_wide().chain(Some(0).into_iter())
+ .collect::<Vec<_>>();
+
unsafe {
- user32::SetWindowTextW(self.window.0,
- text.utf16_units().chain(Some(0).into_iter())
- .collect::<Vec<u16>>().as_ptr() as winapi::LPCWSTR);
+ user32::SetWindowTextW(self.window.0, text.as_ptr() as winapi::LPCWSTR);
}
}
@@ -395,7 +398,6 @@ impl<'a> Iterator for WaitEventsIterator<'a> {
}
}
-#[unsafe_destructor]
impl Drop for Window {
fn drop(&mut self) {
unsafe {