Finally, remove legacy.rs

Any use of imgui::ImGuiTreeNodeFlags should be updated to imgui::TreeNodeFlags
This commit is contained in:
dbr 2021-02-11 14:33:10 +11:00
parent f72e78ddf4
commit b3a50e6928
2 changed files with 0 additions and 6 deletions

View File

@ -1,4 +0,0 @@
#![allow(non_upper_case_globals)]
use crate::widget::tree::TreeNodeFlags;
pub type ImGuiTreeNodeFlags = TreeNodeFlags;

View File

@ -25,7 +25,6 @@ pub use self::input_widget::{
}; };
pub use self::io::*; pub use self::io::*;
pub use self::layout::*; pub use self::layout::*;
pub use self::legacy::*;
pub use self::list_clipper::ListClipper; pub use self::list_clipper::ListClipper;
pub use self::plothistogram::PlotHistogram; pub use self::plothistogram::PlotHistogram;
pub use self::plotlines::PlotLines; pub use self::plotlines::PlotLines;
@ -66,7 +65,6 @@ mod input_widget;
pub mod internal; pub mod internal;
mod io; mod io;
mod layout; mod layout;
mod legacy;
mod list_clipper; mod list_clipper;
mod plothistogram; mod plothistogram;
mod plotlines; mod plotlines;