summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-09-02 13:47:03 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-09-02 13:47:03 +0700
commitf0686eae0e421880a047bb83c6d3f62600cf9778 (patch)
treee33bb3cca4f2ee5d5eabf087b24502611051c9eb /src
parentc9711ff48fa1ad16365bc7eb37fa7153143bcee6 (diff)
downloadiced-f0686eae0e421880a047bb83c6d3f62600cf9778.tar.gz
iced-f0686eae0e421880a047bb83c6d3f62600cf9778.tar.bz2
iced-f0686eae0e421880a047bb83c6d3f62600cf9778.zip
Remove `Clipboard` export in `iced`
Diffstat (limited to 'src')
-rw-r--r--src/application.rs2
-rw-r--r--src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/application.rs b/src/application.rs
index 81add963..0c30a554 100644
--- a/src/application.rs
+++ b/src/application.rs
@@ -57,7 +57,7 @@ use crate::{Color, Command, Element, Executor, Menu, Settings, Subscription};
/// says "Hello, world!":
///
/// ```no_run
-/// use iced::{executor, Application, Clipboard, Command, Element, Settings, Text};
+/// use iced::{executor, Application, Command, Element, Settings, Text};
///
/// pub fn main() -> iced::Result {
/// Hello::run(Settings::default())
diff --git a/src/lib.rs b/src/lib.rs
index 8cd6aa70..8bf4d0e0 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -245,7 +245,7 @@ pub use sandbox::Sandbox;
pub use settings::Settings;
pub use runtime::{
- futures, menu, Align, Background, Clipboard, Color, Command, Font,
+ futures, menu, Align, Background, Color, Command, Font,
HorizontalAlignment, Length, Menu, Point, Rectangle, Size, Subscription,
Vector, VerticalAlignment,
};