aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTomaka17 <pierre.krieger1708@gmail.com>2014-10-11 17:58:17 +0200
committerTomaka17 <pierre.krieger1708@gmail.com>2014-10-11 17:58:17 +0200
commitcb32e64b72e9342d30cde694ab25234a263cab59 (patch)
tree83b4b2aa81928138d6e91102f602fdbd9fcaf04b /src
parent8e8549b4ac451d60bc67599e7336ead8a3b4a6ba (diff)
downloadglutin-cb32e64b72e9342d30cde694ab25234a263cab59.tar.gz
glutin-cb32e64b72e9342d30cde694ab25234a263cab59.zip
Fix warnings while compiling for win32
Diffstat (limited to 'src')
-rw-r--r--src/win32/init.rs9
-rw-r--r--src/win32/mod.rs3
2 files changed, 7 insertions, 5 deletions
diff --git a/src/win32/init.rs b/src/win32/init.rs
index 740bc02..e50fc5d 100644
--- a/src/win32/init.rs
+++ b/src/win32/init.rs
@@ -24,7 +24,7 @@ pub fn new_window(builder_dimensions: Option<(uint, uint)>, builder_title: Strin
// initializing variables to be sent to the task
let title = builder_title.as_slice().utf16_units()
- .collect::<Vec<u16>>().append_one(0); // title to utf16
+ .chain(Some(0).into_iter()).collect::<Vec<u16>>(); // title to utf16
//let hints = hints.clone();
let (tx, rx) = channel();
@@ -34,8 +34,8 @@ pub fn new_window(builder_dimensions: Option<(uint, uint)>, builder_title: Strin
TaskBuilder::new().native().spawn(proc() {
// registering the window class
let class_name = {
- let class_name: Vec<u16> = "Window Class".utf16_units().collect::<Vec<u16>>()
- .append_one(0);
+ let class_name: Vec<u16> = "Window Class".utf16_units().chain(Some(0).into_iter())
+ .collect::<Vec<u16>>();
let class = ffi::WNDCLASSEX {
cbSize: mem::size_of::<ffi::WNDCLASSEX>() as ffi::UINT,
@@ -333,7 +333,8 @@ pub fn new_window(builder_dimensions: Option<(uint, uint)>, builder_title: Strin
// loading the opengl32 module
let gl_library = {
- let name = "opengl32.dll".utf16_units().collect::<Vec<u16>>().append_one(0).as_ptr();
+ let name = "opengl32.dll".utf16_units().chain(Some(0).into_iter())
+ .collect::<Vec<u16>>().as_ptr();
let lib = unsafe { ffi::LoadLibraryW(name) };
if lib.is_null() {
tx.send(Err(format!("LoadLibrary function failed: {}",
diff --git a/src/win32/mod.rs b/src/win32/mod.rs
index af28011..720010c 100644
--- a/src/win32/mod.rs
+++ b/src/win32/mod.rs
@@ -85,7 +85,8 @@ impl Window {
pub fn set_title(&self, text: &str) {
unsafe {
ffi::SetWindowTextW(self.window,
- text.utf16_units().collect::<Vec<u16>>().append_one(0).as_ptr() as ffi::LPCWSTR);
+ text.utf16_units().chain(Some(0).into_iter())
+ .collect::<Vec<u16>>().as_ptr() as ffi::LPCWSTR);
}
}