diff options
| author | 2024-03-16 16:20:05 +0100 | |
|---|---|---|
| committer | 2024-03-16 16:20:05 +0100 | |
| commit | 348e00e11cd976a16493f4ce693db614886c1ecd (patch) | |
| tree | 80963c0917b7775adb32b6c9233f5b23b0204a04 /src | |
| parent | bb71e8481ed59f991b9bd9dc55ea7e011ba0aac6 (diff) | |
| download | iced-348e00e11cd976a16493f4ce693db614886c1ecd.tar.gz iced-348e00e11cd976a16493f4ce693db614886c1ecd.tar.bz2 iced-348e00e11cd976a16493f4ce693db614886c1ecd.zip  | |
Make `Program::title` private
Diffstat (limited to '')
| -rw-r--r-- | src/program.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/program.rs b/src/program.rs index ab194a0d..c6c702f1 100644 --- a/src/program.rs +++ b/src/program.rs @@ -355,7 +355,7 @@ impl<P: Definition> Program<P> {      }      /// Sets the [`Title`] of the [`Program`]. -    pub fn title( +    pub(crate) fn title(          self,          title: impl Title<P::State>,      ) -> Program<  | 
