Rename new_notification() to new()

This commit is contained in:
2017-07-10 01:09:21 +02:00
parent fe4d803efe
commit 437f2cc756
2 changed files with 18 additions and 13 deletions

View File

@@ -4,9 +4,9 @@ fn main() {
// Init libnotify
libnotify::init("myapp").unwrap();
// Create a new notification and show it
let n = libnotify::Notification::new_notification("Summary",
Some("Optional Body"),
None).unwrap();
let n =
libnotify::Notification::new("Summary", Some("Optional Body"), None)
.unwrap();
// Show the notification
n.show().unwrap();
// You can also use the .show() convenience method on the context