Fix a few out of date warnings
This commit is contained in:
parent
67555ee5b4
commit
f507698c62
3 changed files with 5 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
|||
use crate::{
|
||||
AnyWindowHandle, BackgroundExecutor, ClipboardItem, CursorStyle, DisplayId, ForegroundExecutor,
|
||||
Keymap, Platform, PlatformDisplay, PlatformTextSystem, Task, TestDisplay, TestTextSystem,
|
||||
TestWindow, WindowOptions,
|
||||
Keymap, Platform, PlatformDisplay, PlatformTextSystem, Task, TestDisplay, TestWindow,
|
||||
WindowAppearance, WindowOptions,
|
||||
};
|
||||
use anyhow::{anyhow, Result};
|
||||
use collections::VecDeque;
|
||||
|
@ -121,7 +121,7 @@ impl Platform for TestPlatform {
|
|||
|
||||
fn text_system(&self) -> Arc<dyn PlatformTextSystem> {
|
||||
#[cfg(target_os = "linux")]
|
||||
return Arc::new(TestTextSystem {});
|
||||
return Arc::new(crate::platform::test::TestTextSystem {});
|
||||
|
||||
#[cfg(target_os = "macos")]
|
||||
return Arc::new(crate::platform::mac::MacTextSystem::new());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue