mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-11-14 12:51:13 +00:00
app: fix various clippy issue
Fix uninlined_format_args since 1.66.0
This commit is contained in:
parent
8603b21d98
commit
a02c99fb61
5 changed files with 9 additions and 9 deletions
|
@ -2,7 +2,7 @@
|
|||
name = "gst_pipeline_studio"
|
||||
version = "0.2.3"
|
||||
edition = "2018"
|
||||
rust-version = "1.63"
|
||||
rust-version = "1.67"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ pub enum AppState {
|
|||
|
||||
impl fmt::Display for AppState {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
write!(f, "{:?}", self)
|
||||
write!(f, "{self:?}",)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -68,7 +68,7 @@ impl ops::Deref for GPSApp {
|
|||
type Target = GPSAppInner;
|
||||
|
||||
fn deref(&self) -> &GPSAppInner {
|
||||
&*self.0
|
||||
&self.0
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -432,7 +432,7 @@ impl GPSApp {
|
|||
.valign(gtk::Align::Center)
|
||||
.build();
|
||||
box_preview.append(&picture);
|
||||
let label = gtk::Label::new(Some(&format!("Preview{}", n_sink)));
|
||||
let label = gtk::Label::new(Some(&format!("Preview{n_sink}")));
|
||||
notebook_preview.insert_page(&box_preview, Some(&label), None);
|
||||
}
|
||||
|
||||
|
@ -635,7 +635,7 @@ impl GPSApp {
|
|||
if app.player.borrow().create_pipeline(&render_parse_launch).is_ok() {
|
||||
GPSUI::message::display_message_dialog(&render_parse_launch,gtk::MessageType::Info, |_| {});
|
||||
} else {
|
||||
GPSUI::message::display_error_dialog(false, &format!("Unable to render:\n\n{}", render_parse_launch));
|
||||
GPSUI::message::display_error_dialog(false, &format!("Unable to render:\n\n{render_parse_launch}", ));
|
||||
}
|
||||
}
|
||||
);
|
||||
|
|
|
@ -41,7 +41,7 @@ impl LogLevel {
|
|||
|
||||
impl fmt::Display for LogLevel {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
write!(f, "{:?}", self)
|
||||
write!(f, "{self:?}")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ pub fn display_message_dialog<F: Fn(Application) + 'static>(
|
|||
#[allow(dead_code)]
|
||||
pub fn display_error_dialog(fatal: bool, message: &str) {
|
||||
display_message_dialog(
|
||||
&format!("Error: {}", message),
|
||||
&format!("Error: {message}"),
|
||||
gtk::MessageType::Error,
|
||||
move |app| {
|
||||
if fatal {
|
||||
|
|
|
@ -209,7 +209,7 @@ pub fn display_plugin_properties(app: &GPSApp, element_name: &str, node_id: u32)
|
|||
}
|
||||
|
||||
let dialog = GPSUI::dialog::create_dialog(
|
||||
&format!("{} properties", element_name),
|
||||
&format!("{element_name} properties"),
|
||||
app,
|
||||
&grid,
|
||||
glib::clone!(@strong update_properties => move |app, dialog| {
|
||||
|
@ -289,7 +289,7 @@ pub fn display_pad_properties(
|
|||
// Add all specific properties from the given element
|
||||
|
||||
let dialog = GPSUI::dialog::create_dialog(
|
||||
&format!("{} properties from {}", port_name, element_name),
|
||||
&format!("{port_name} properties from {element_name}"),
|
||||
app,
|
||||
&grid,
|
||||
glib::clone!(@strong update_properties => move |app, dialog| {
|
||||
|
|
Loading…
Reference in a new issue