aboutsummaryrefslogtreecommitdiff
path: root/src/backends/kdialog.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/kdialog.rs')
-rw-r--r--src/backends/kdialog.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backends/kdialog.rs b/src/backends/kdialog.rs
index 34070c4..c2ddcd0 100644
--- a/src/backends/kdialog.rs
+++ b/src/backends/kdialog.rs
@@ -20,7 +20,7 @@ const CANCEL: i32 = 1;
/// The `kdialog` backend.
///
/// This backend uses the external `kdialog` program to display KDE dialog boxes.
-#[derive(Debug)]
+#[derive(Debug, Default)]
pub struct KDialog {
icon: Option<String>,
// TODO: --dontagain
@@ -29,7 +29,7 @@ pub struct KDialog {
impl KDialog {
/// Creates a new `KDialog` instance without configuration.
pub fn new() -> KDialog {
- KDialog { icon: None }
+ Default::default()
}
/// Sets the icon in the dialog box's titlebar and taskbar button.