From ff2a470fd85cc3ccf8c32f6268a0e8aa0075dd38 Mon Sep 17 00:00:00 2001 From: LordRatte Date: Thu, 23 Dec 2021 09:34:37 +0200 Subject: Change GitHub namespace to new org for all files --- native/src/widget/checkbox.rs | 2 +- native/src/widget/image.rs | 2 +- native/src/widget/pane_grid.rs | 2 +- native/src/widget/radio.rs | 2 +- native/src/widget/text.rs | 2 +- native/src/widget/text_input.rs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'native/src/widget') diff --git a/native/src/widget/checkbox.rs b/native/src/widget/checkbox.rs index 5a8dbc83..95856928 100644 --- a/native/src/widget/checkbox.rs +++ b/native/src/widget/checkbox.rs @@ -32,7 +32,7 @@ pub use iced_style::checkbox::{Style, StyleSheet}; /// Checkbox::new(is_checked, "Toggle me!", Message::CheckboxToggled); /// ``` /// -/// ![Checkbox drawn by `iced_wgpu`](https://github.com/hecrj/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/checkbox.png?raw=true) +/// ![Checkbox drawn by `iced_wgpu`](https://github.com/iced-rs/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/checkbox.png?raw=true) #[allow(missing_debug_implementations)] pub struct Checkbox<'a, Message, Renderer: text::Renderer> { is_checked: bool, diff --git a/native/src/widget/image.rs b/native/src/widget/image.rs index 164b4a5e..b8fb662e 100644 --- a/native/src/widget/image.rs +++ b/native/src/widget/image.rs @@ -20,7 +20,7 @@ use std::hash::Hash; /// let image = Image::::new("resources/ferris.png"); /// ``` /// -/// +/// #[derive(Debug, Hash)] pub struct Image { handle: Handle, diff --git a/native/src/widget/pane_grid.rs b/native/src/widget/pane_grid.rs index 24b87eed..b3d8b819 100644 --- a/native/src/widget/pane_grid.rs +++ b/native/src/widget/pane_grid.rs @@ -6,7 +6,7 @@ //! The [`pane_grid` example] showcases how to use a [`PaneGrid`] with resizing, //! drag and drop, and hotkey support. //! -//! [`pane_grid` example]: https://github.com/hecrj/iced/tree/0.3/examples/pane_grid +//! [`pane_grid` example]: https://github.com/iced-rs/iced/tree/0.3/examples/pane_grid mod axis; mod configuration; mod content; diff --git a/native/src/widget/radio.rs b/native/src/widget/radio.rs index aa7019d4..1dbe7cf5 100644 --- a/native/src/widget/radio.rs +++ b/native/src/widget/radio.rs @@ -41,7 +41,7 @@ pub use iced_style::radio::{Style, StyleSheet}; /// Radio::new(Choice::B, "This is B", selected_choice, Message::RadioSelected); /// ``` /// -/// ![Radio buttons drawn by `iced_wgpu`](https://github.com/hecrj/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/radio.png?raw=true) +/// ![Radio buttons drawn by `iced_wgpu`](https://github.com/iced-rs/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/radio.png?raw=true) #[allow(missing_debug_implementations)] pub struct Radio<'a, Message, Renderer: text::Renderer> { is_selected: bool, diff --git a/native/src/widget/text.rs b/native/src/widget/text.rs index 488b45c4..f0b29d15 100644 --- a/native/src/widget/text.rs +++ b/native/src/widget/text.rs @@ -21,7 +21,7 @@ use std::hash::Hash; /// .size(40); /// ``` /// -/// ![Text drawn by `iced_wgpu`](https://github.com/hecrj/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/text.png?raw=true) +/// ![Text drawn by `iced_wgpu`](https://github.com/iced-rs/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/text.png?raw=true) #[derive(Debug)] pub struct Text { content: String, diff --git a/native/src/widget/text_input.rs b/native/src/widget/text_input.rs index fb9f0834..f06b6aa6 100644 --- a/native/src/widget/text_input.rs +++ b/native/src/widget/text_input.rs @@ -52,7 +52,7 @@ pub use iced_style::text_input::{Style, StyleSheet}; /// ) /// .padding(10); /// ``` -/// ![Text input drawn by `iced_wgpu`](https://github.com/hecrj/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/text_input.png?raw=true) +/// ![Text input drawn by `iced_wgpu`](https://github.com/iced-rs/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/text_input.png?raw=true) #[allow(missing_debug_implementations)] pub struct TextInput<'a, Message, Renderer: text::Renderer> { state: &'a mut State, -- cgit