get/set_size() -> get/set_inner/outer_size()
This commit is contained in:
parent
0d122cec47
commit
d4e334aecb
3 changed files with 21 additions and 8 deletions
|
|
@ -221,11 +221,15 @@ impl Window {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn get_size(&self) -> (uint, uint) {
|
||||
pub fn get_inner_size(&self) -> (uint, uint) {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
pub fn set_size(&self, x: uint, y: uint) {
|
||||
pub fn get_outer_size(&self) -> (uint, uint) {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
pub fn set_inner_size(&self, x: uint, y: uint) {
|
||||
use libc;
|
||||
|
||||
unsafe {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue