Fix typos in function names

This commit is contained in:
Joonas Haapala 2016-12-10 21:37:57 +02:00
parent 2c4aeb4db9
commit d816b97442
2 changed files with 2 additions and 2 deletions

View File

@ -786,7 +786,7 @@ extern "C" {
pub fn igPushStyleColor(idx: ImGuiCol, col: ImVec4);
pub fn igPopStyleColor(count: c_int);
pub fn igPushStyleVar(idx: ImGuiStyleVar, val: c_float);
pub fn igPushStyleVavrVec(idx: ImGuiStyleVar, val: ImVec2);
pub fn igPushStyleVarVec(idx: ImGuiStyleVar, val: ImVec2);
pub fn igPopStyleVar(count: c_int);
pub fn igGetFont() -> *mut ImFont;
pub fn igGetFontSize() -> c_float;

View File

@ -137,7 +137,7 @@ impl<'ui, 'p> Window<'ui, 'p> {
self
}
#[inline]
pub fn always_vertical_scollbar(mut self, value: bool) -> Self {
pub fn always_vertical_scrollbar(mut self, value: bool) -> Self {
self.flags.set(ImGuiWindowFlags_AlwaysVerticalScrollbar, value);
self
}