From b09b50e72c75131ce7d9d5c49cf976ff76cdd3af Mon Sep 17 00:00:00 2001 From: dbr Date: Wed, 12 Jan 2022 14:47:43 +1100 Subject: [PATCH] Remove incorrect docs --- imgui/src/stacks.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/imgui/src/stacks.rs b/imgui/src/stacks.rs index 81e3425..4980ac6 100644 --- a/imgui/src/stacks.rs +++ b/imgui/src/stacks.rs @@ -291,41 +291,29 @@ pub enum ItemFlag { } create_token!( - /// Tracks a window that can be ended by calling `.end()` - /// or by dropping. pub struct ItemWidthStackToken<'ui>; - /// Ends a window #[doc(alias = "PopItemWidth")] drop { sys::igPopItemWidth() } ); create_token!( - /// Tracks a window that can be ended by calling `.end()` - /// or by dropping. pub struct TextWrapPosStackToken<'ui>; - /// Ends a window #[doc(alias = "PopTextWrapPos")] drop { sys::igPopTextWrapPos() } ); create_token!( - /// Tracks a window that can be ended by calling `.end()` - /// or by dropping. pub struct PushAllowKeyboardFocusToken<'ui>; - /// Ends a window #[doc(alias = "PopAllowKeyboardFocus")] drop { sys::igPopAllowKeyboardFocus() } ); create_token!( - /// Tracks a window that can be ended by calling `.end()` - /// or by dropping. pub struct PushButtonRepeatToken<'ui>; - /// Ends a window #[doc(alias = "PopButtonRepeat")] drop { sys::igPopButtonRepeat() } );